Skip to content

Commit ec107c6

Browse files
committed
Alter github action
1 parent 449863d commit ec107c6

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/main.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,14 @@ jobs:
6262
git clone --depth 1 https://github.com/w3c/json-ld-framing.git _json-ld-framing
6363
git clone --depth 1 https://github.com/json-ld/normalization.git _normalization
6464
- name: Test with Python=${{ matrix.python-version }} Loader=${{ matrix.loader }}
65+
# run: |
66+
# python tests/runtests.py ./_json-ld-api/tests -l ${{ matrix.loader }}
67+
# python tests/runtests.py ./_json-ld-framing/tests -l ${{ matrix.loader }}
68+
# python tests/runtests.py ./_normalization/tests -l ${{ matrix.loader }}
6569
run: |
66-
python tests/runtests.py ./_json-ld-api/tests -l ${{ matrix.loader }}
67-
python tests/runtests.py ./_json-ld-framing/tests -l ${{ matrix.loader }}
68-
python tests/runtests.py ./_normalization/tests -l ${{ matrix.loader }}
70+
pytest --tests=./_json-ld-api/tests --loader=${{ matrix.loader }}
71+
pytest --tests=./_json-ld-framing/tests --loader=${{ matrix.loader }}
72+
pytest --tests=./_normalization/tests --loader=${{ matrix.loader }}
6973
env:
7074
LOADER: ${{ matrix.loader }}
7175
#coverage:

0 commit comments

Comments
 (0)