Skip to content

Commit 303f941

Browse files
authored
ci(fix): not run test without obolibrary mark in obolibrary-only env (#1770)
Correct GH workflow to not run any test without the `obolibrary` mark in the `obolibrary-only` GH CI environment
1 parent 3501190 commit 303f941

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: echo PYTEST_ADDOPTS=--scheduled >> "$GITHUB_ENV"
104104

105105
- name: Run all tests except those involving obolibrary
106-
if: matrix.mode != 'dandi-api'
106+
if: matrix.mode != 'dandi-api' && matrix.mode != 'obolibrary-only'
107107
run: |
108108
python -m pytest -s -v -m "not obolibrary" --cov=dandi --cov-report=xml dandi
109109

0 commit comments

Comments
 (0)