Skip to content

Commit 37b8e53

Browse files
committed
Let github actions run all non-manifest tests
1 parent 6d81a1f commit 37b8e53

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,10 @@ jobs:
6565
pip install -r requirements-test.txt
6666
- name: Test with Python=${{ matrix.python-version }} Loader=${{ matrix.loader }}
6767
run: |
68-
pytest --tests=./specifications/json-ld-api/tests --loader=${{ matrix.loader }}
69-
pytest --tests=./specifications/json-ld-framing/tests --loader=${{ matrix.loader }}
70-
pytest --tests=./specifications/normalization/tests --loader=${{ matrix.loader }}
68+
pytest tests/test_manifests.py --tests=./specifications/json-ld-api/tests --loader=${{ matrix.loader }}
69+
pytest tests/test_manifests.py --tests=./specifications/json-ld-framing/tests --loader=${{ matrix.loader }}
70+
pytest tests/test_manifests.py --tests=./specifications/normalization/tests --loader=${{ matrix.loader }}
71+
pytest --ignore ./tests/test_manifests.py
7172
env:
7273
LOADER: ${{ matrix.loader }}
7374
#coverage:

0 commit comments

Comments
 (0)