Skip to content

Commit 1b5faf1

Browse files
committed
Alter github action
1 parent 640826d commit 1b5faf1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,14 @@ jobs:
6464
run: |
6565
pip install -r requirements-test.txt
6666
- name: Test with Python=${{ matrix.python-version }} Loader=${{ matrix.loader }}
67+
# run: |
68+
# python tests/runtests.py ./_json-ld-api/tests -l ${{ matrix.loader }}
69+
# python tests/runtests.py ./_json-ld-framing/tests -l ${{ matrix.loader }}
70+
# python tests/runtests.py ./_normalization/tests -l ${{ matrix.loader }}
6771
run: |
68-
python tests/runtests.py ./specifications/json-ld-api/tests -l ${{ matrix.loader }}
69-
python tests/runtests.py ./specifications/json-ld-framing/tests -l ${{ matrix.loader }}
70-
python tests/runtests.py ./specifications/normalization/tests -l ${{ matrix.loader }}
72+
pytest --tests=./specifications/json-ld-api/tests --loader=${{ matrix.loader }}
73+
pytest --tests=./specifications/json-ld-framing/tests --loader=${{ matrix.loader }}
74+
pytest --tests=./specifications/normalization/tests --loader=${{ matrix.loader }}
7175
env:
7276
LOADER: ${{ matrix.loader }}
7377
#coverage:

0 commit comments

Comments
 (0)