From 63b457380aec4b9dcd82c9e2db551525cb6c91a2 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Mon, 3 Nov 2025 10:27:22 +0100 Subject: [PATCH] ci: exclude manual tests from CI test runs Manual tests in tests/manual/ directory should not be run automatically in CI as they require manual interaction or are for debugging purposes only. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3490e27..7826747 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,4 +81,4 @@ jobs: NEXTCLOUD_USERNAME: "admin" NEXTCLOUD_PASSWORD: "admin" run: | - uv run pytest -v --log-cli-level=WARN + uv run pytest -v --log-cli-level=WARN --ignore=tests/manual