Skip to content

Commit c54f2db

Browse files
committed
chore(tox): Use python -m pytest --cov ., drop legacy ruff call
1 parent 157e178 commit c54f2db

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

tox.ini

+2-8
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,8 @@ deps =
5151
pre: git+https://github.com/bids-standard/bids-specification.git\#subdirectory=tools/schemacode
5252

5353
commands =
54-
pytest --doctest-modules --cov bids_validator --cov-report xml --cov-report term \
55-
--junitxml=test-results.xml -v src/ {posargs}
56-
57-
[testenv:long]
58-
commands =
59-
pytest --doctest-modules --cov fmripost_aroma --cov-report xml \
60-
--junitxml=test-results.xml -v tests/ {posargs}
54+
python -m pytest --doctest-modules --cov . --cov-report xml --cov-report term \
55+
--junitxml=test-results.xml -v {posargs}
6156

6257
[testenv:docs]
6358
description = Build documentation site
@@ -76,7 +71,6 @@ skip_install = true
7671
commands =
7772
fix: ruff check --fix src/
7873
fix: ruff format src/
79-
fix: ruff check --select ISC001 --fix src/
8074
!fix: ruff check src/
8175
!fix: ruff format --diff src/
8276

0 commit comments

Comments
 (0)