From c4287b5342ce1907f9ef3084a7de9c45a96eb6ba Mon Sep 17 00:00:00 2001 From: Isaac To Date: Mon, 15 Dec 2025 10:04:48 -0800 Subject: [PATCH] ci(fix): not run test without `obolibrary` mark in `obolibrary-only` env Correct GH workflow to not run any test without the `obolibrary` mark in the `obolibrary-only` GH CI environment --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 2bceb9c1b..f406057ee 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -103,7 +103,7 @@ jobs: run: echo PYTEST_ADDOPTS=--scheduled >> "$GITHUB_ENV" - name: Run all tests except those involving obolibrary - if: matrix.mode != 'dandi-api' + if: matrix.mode != 'dandi-api' && matrix.mode != 'obolibrary-only' run: | python -m pytest -s -v -m "not obolibrary" --cov=dandi --cov-report=xml dandi