Skip to content

Commit 46b35b4

Browse files
committed
ignore benchmark folder in all tox environments
1 parent 9ef6b8b commit 46b35b4

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

tox.ini

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ python =
2020
3.13: py313-extra
2121

2222
[testenv]
23-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
23+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
2424
deps =
2525
pytest
2626
passenv =
@@ -35,13 +35,13 @@ deps =
3535

3636
[testenv:py38]
3737
basepython = python3.8
38-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
38+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
3939
deps =
4040
pytest
4141

4242
[testenv:py38-extra]
4343
basepython = python3.8
44-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
44+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
4545
deps =
4646
pytest
4747
numpy
@@ -51,13 +51,13 @@ deps =
5151

5252
[testenv:py39]
5353
basepython = python3.9
54-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
54+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
5555
deps =
5656
pytest
5757

5858
[testenv:py39-extra]
5959
basepython = python3.9
60-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
60+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
6161
deps =
6262
pytest
6363
numpy
@@ -67,14 +67,14 @@ deps =
6767

6868
[testenv:py310]
6969
basepython = python3.10
70-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
70+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
7171
deps =
7272
pytest
7373

7474
[testenv:py310-extra]
7575
basepython = python3.10
7676
setenv = PYTHONDEVMODE = 1
77-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
77+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
7878
deps =
7979
pytest
8080
numpy
@@ -84,14 +84,14 @@ deps =
8484

8585
[testenv:py311]
8686
basepython = python3.11
87-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
87+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
8888
deps =
8989
pytest
9090

9191
[testenv:py311-extra]
9292
basepython = python3.11
9393
setenv = PYTHONDEVMODE = 1
94-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
94+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
9595
deps =
9696
pytest
9797
numpy
@@ -100,14 +100,14 @@ deps =
100100

101101
[testenv:py312]
102102
basepython = python3.12
103-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
103+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
104104
deps =
105105
pytest
106106

107107
[testenv:py312-extra]
108108
basepython = python3.12
109109
setenv = PYTHONDEVMODE = 1
110-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
110+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
111111
deps =
112112
pytest
113113
numpy
@@ -116,14 +116,14 @@ deps =
116116

117117
[testenv:py313]
118118
basepython = python3.13
119-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
119+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
120120
deps =
121121
pytest
122122

123123
[testenv:py313-extra]
124124
basepython = python3.13
125125
setenv = PYTHONDEVMODE = 1
126-
commands = pytest -v --doctest-modules --ignore benchmark.py {posargs}
126+
commands = pytest -v --doctest-modules --ignore benchmark {posargs}
127127
deps =
128128
pytest
129129
numpy

0 commit comments

Comments
 (0)