Skip to content

Commit

Permalink
Update pytest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Oct 18, 2023
1 parent 21da7ea commit 118ad64
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with: {python-version: 3.x}
- run: pip install pytest testscenarios # git+https://github.com/testing-cabal/testscenarios.git@master
- run: pip install pytest testscenarios
# git+https://github.com/testing-cabal/testscenarios.git@master
- run: pip install -r requirements.txt || pip install --editable . || pip install . || true
- run: pytest
--ignore=testtools/tests/test_testcase.py
--ignore=testtools/tests/matchers/test_basic.py
--ignore=testtools/tests/matchers/test_const.py
--ignore=testtools/tests/matchers/test_datastructures.py
--ignore=testtools/tests/matchers/test_dict.py
--ignore=testtools/tests/matchers/test_doctest.py
--ignore=testtools/tests/matchers/test_exception.py
--ignore=testtools/tests/matchers/test_higherorder.py
--ignore=testtools/tests/matchers/test_warnings.py .
--ignore=testtools/tests/matchers/test_warnings.py
--ignore=testtools/tests/test_testcase.py
--ignore=testtools/tests/test_testresult.py .
- run: pytest
testtools/tests/test_testcase.py
testtools/tests/matchers/test_basic.py
testtools/tests/matchers/test_const.py
testtools/tests/matchers/test_datastructures.py
Expand All @@ -29,4 +30,6 @@ jobs:
testtools/tests/matchers/test_exception.py
testtools/tests/matchers/test_higherorder.py
testtools/tests/matchers/test_warnings.py
testtools/tests/test_testcase.py
testtools/tests/test_testresult.py . || true
- run: pytest --doctest-modules . || true

0 comments on commit 118ad64

Please sign in to comment.