use pytest.ini testpaths to order testing

This commit is contained in:
Paul Gauthier 2024-07-16 10:33:42 +01:00
parent 2d09af61ba
commit 896e79bcd1
16 changed files with 6 additions and 4 deletions

View file

@ -38,5 +38,4 @@ jobs:
- name: Run tests
run: |
pytest --ignore=tests/test_help.py
pytest tests/test_help.py
pytest

View file

@ -38,6 +38,5 @@ jobs:
- name: Run tests
run: |
pytest --ignore=tests/test_help.py
pytest tests/test_help.py
pytest

View file

@ -1,4 +1,8 @@
[pytest]
norecursedirs = tmp.* build benchmark _site OLD
addopts = -p no:warnings
testpaths =
tests/basic
tests/help