mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 21:34:59 +00:00
use pytest.ini testpaths to order testing
This commit is contained in:
parent
2d09af61ba
commit
896e79bcd1
16 changed files with 6 additions and 4 deletions
3
.github/workflows/ubuntu-tests.yml
vendored
3
.github/workflows/ubuntu-tests.yml
vendored
|
@ -38,5 +38,4 @@ jobs:
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
pytest --ignore=tests/test_help.py
|
pytest
|
||||||
pytest tests/test_help.py
|
|
||||||
|
|
3
.github/workflows/windows-tests.yml
vendored
3
.github/workflows/windows-tests.yml
vendored
|
@ -38,6 +38,5 @@ jobs:
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
pytest --ignore=tests/test_help.py
|
pytest
|
||||||
pytest tests/test_help.py
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,8 @@
|
||||||
[pytest]
|
[pytest]
|
||||||
norecursedirs = tmp.* build benchmark _site OLD
|
norecursedirs = tmp.* build benchmark _site OLD
|
||||||
addopts = -p no:warnings
|
addopts = -p no:warnings
|
||||||
|
testpaths =
|
||||||
|
tests/basic
|
||||||
|
tests/help
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue