Skip to content

Commit ae4d838

Browse files
authored
Update pytest.yml
1 parent 118ad64 commit ae4d838

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/pytest.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ jobs:
1010
- run: pip install pytest testscenarios
1111
# git+https://github.com/testing-cabal/testscenarios.git@master
1212
- run: pip install -r requirements.txt || pip install --editable . || pip install . || true
13-
- run: pytest
13+
- name: Pytests that pass
14+
run: pytest
1415
--ignore=testtools/tests/matchers/test_basic.py
1516
--ignore=testtools/tests/matchers/test_const.py
1617
--ignore=testtools/tests/matchers/test_datastructures.py
@@ -21,7 +22,9 @@ jobs:
2122
--ignore=testtools/tests/matchers/test_warnings.py
2223
--ignore=testtools/tests/test_testcase.py
2324
--ignore=testtools/tests/test_testresult.py .
24-
- run: pytest
25+
# TODO: Fix the pytests that fail and move them up
26+
- name: Pytests that fail
27+
run: pytest
2528
testtools/tests/matchers/test_basic.py
2629
testtools/tests/matchers/test_const.py
2730
testtools/tests/matchers/test_datastructures.py
@@ -31,5 +34,5 @@ jobs:
3134
testtools/tests/matchers/test_higherorder.py
3235
testtools/tests/matchers/test_warnings.py
3336
testtools/tests/test_testcase.py
34-
testtools/tests/test_testresult.py . || true
37+
testtools/tests/test_testresult.py || true
3538
- run: pytest --doctest-modules . || true

0 commit comments

Comments
 (0)