Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/analysis-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
APP_PORT: 9009
NC_AUTH_USER: "admin"
NC_AUTH_PASS: "adminpassword"
NEXTCLOUD_BRANCH: stable31
NEXTCLOUD_BRANCH: stable34

jobs:
analysis:
Expand All @@ -42,7 +42,7 @@ jobs:
tests-oci:
needs: [analysis]
runs-on: ubuntu-22.04
name: stable31 • 🐍3.11 • OCI
name: stable34 • 🐍3.11 • OCI
timeout-minutes: 60

services:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
with:
repository: nextcloud/notes
# Notes main (v5.0.0) requires NC >= 33; pin older servers to the last 4.x (supports NC 28-34).
ref: "${{ (matrix.nextcloud == 'stable31' || matrix.nextcloud == 'stable32') && 'v4.13.1' || 'main' }}"
ref: "${{ matrix.nextcloud == 'stable32' && 'v4.13.1' || 'main' }}"
path: apps/notes

- name: Checkout Files Locking
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ 'stable31', 'stable32' ]
nextcloud: [ 'stable32', 'stable34' ]
Comment thread
oleksandr-nc marked this conversation as resolved.
env:
NC_dbname: nextcloud_abz
DATABASE_PGSQL: 1
Expand Down Expand Up @@ -515,7 +515,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nextcloud: [ 'stable31', 'stable33' ]
nextcloud: [ 'stable33', 'stable34' ]
Comment thread
oleksandr-nc marked this conversation as resolved.
env:
NEXTCLOUD_URL: "http://localhost:8080/index.php"
timeout-minutes: 60
Expand Down Expand Up @@ -550,7 +550,7 @@ jobs:
with:
repository: nextcloud/notes
# Notes main (v5.0.0) requires NC >= 33; pin older servers to the last 4.x (supports NC 28-34).
ref: "${{ (matrix.nextcloud == 'stable31' || matrix.nextcloud == 'stable32') && 'v4.13.1' || 'main' }}"
ref: "${{ matrix.nextcloud == 'stable32' && 'v4.13.1' || 'main' }}"
path: apps/notes

- name: Checkout Files Locking
Expand Down
6 changes: 6 additions & 0 deletions tests/actual_tests/teams_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,12 @@ async def test_teams_personal_circle(anc_any):


@pytest.mark.asyncio(scope="session")
@pytest.mark.xfail(
reason="Upstream Circles regression: creating a local circle through an ExApp (app mode) returns HTTP 400 "
"since the nextcloud/circles local-controller permission changes (mid-2026). Client mode is unaffected. "
"Remove this marker once Circles is fixed on the stable branches.",
strict=False,
)
Comment thread
coderabbitai[bot] marked this conversation as resolved.
async def test_teams_local_circle(anc_any):
if await anc_any.teams.available is False:
pytest.skip("Teams (Circles) is not installed")
Expand Down
Loading