Skip to content

Commit 96b1246

Browse files
committed
Fix: tox.ini configurations packages & opts
1 parent 49d0af3 commit 96b1246

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = python39
2+
envlist = python39,python310,python311
33

44
[travis]
55
python =
@@ -9,21 +9,21 @@ python =
99

1010
[testenv:python39]
1111
install_command =
12-
python -m pip install --upgrade pip
13-
pip install -e .
12+
python -m pip install --upgrade pip {opts} {packages}
13+
pip install -e . {opts} {packages}
1414
extras = tests,docs
1515
commands = python -m pytest
1616

1717
[testenv:python310]
1818
install_command =
19-
python -m pip install --upgrade pip {packages}
20-
pip install -e . {packages}
19+
python -m pip install --upgrade pip {opts} {packages}
20+
pip install -e . {opts} {packages}
2121
extras = tests,docs
2222
commands = python -m pytest
2323

2424
[testenv:python311]
2525
install_command =
26-
python -m pip install --upgrade pip {packages}
27-
pip install -e . {packages}
26+
python -m pip install --upgrade pip {opts} {packages}
27+
pip install -e . {opts} {packages}
2828
extras = tests,docs
2929
commands = python -m pytest

0 commit comments

Comments
 (0)