Skip to content

Commit

Permalink
Fix: tox.ini configurations packages & opts
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Sep 7, 2023
1 parent 49d0af3 commit 96b1246
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = python39
envlist = python39,python310,python311

[travis]
python =
Expand All @@ -9,21 +9,21 @@ python =

[testenv:python39]
install_command =
python -m pip install --upgrade pip
pip install -e .
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = tests,docs
commands = python -m pytest

[testenv:python310]
install_command =
python -m pip install --upgrade pip {packages}
pip install -e . {packages}
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = tests,docs
commands = python -m pytest

[testenv:python311]
install_command =
python -m pip install --upgrade pip {packages}
pip install -e . {packages}
python -m pip install --upgrade pip {opts} {packages}
pip install -e . {opts} {packages}
extras = tests,docs
commands = python -m pytest

0 comments on commit 96b1246

Please sign in to comment.