Skip to content

Commit

Permalink
ignore benchmark folder in all tox environments
Browse files Browse the repository at this point in the history
  • Loading branch information
astanin committed Sep 27, 2024
1 parent 9ef6b8b commit 46b35b4
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ python =
3.13: py313-extra

[testenv]
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
passenv =
Expand All @@ -35,13 +35,13 @@ deps =

[testenv:py38]
basepython = python3.8
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py38-extra]
basepython = python3.8
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand All @@ -51,13 +51,13 @@ deps =

[testenv:py39]
basepython = python3.9
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py39-extra]
basepython = python3.9
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand All @@ -67,14 +67,14 @@ deps =

[testenv:py310]
basepython = python3.10
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py310-extra]
basepython = python3.10
setenv = PYTHONDEVMODE = 1
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand All @@ -84,14 +84,14 @@ deps =

[testenv:py311]
basepython = python3.11
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py311-extra]
basepython = python3.11
setenv = PYTHONDEVMODE = 1
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand All @@ -100,14 +100,14 @@ deps =

[testenv:py312]
basepython = python3.12
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py312-extra]
basepython = python3.12
setenv = PYTHONDEVMODE = 1
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand All @@ -116,14 +116,14 @@ deps =

[testenv:py313]
basepython = python3.13
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest

[testenv:py313-extra]
basepython = python3.13
setenv = PYTHONDEVMODE = 1
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
deps =
pytest
numpy
Expand Down

0 comments on commit 46b35b4

Please sign in to comment.