Skip to content

Commit

Permalink
Update tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored May 21, 2024
1 parent f63d59d commit 078149f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,23 @@ commands =
python -m pip list
python test.py -v

# Test with python 3.12; pinned dev reqs; upgraded run reqs
# Test with python 3.11; optional and dev reqs (some features are not compatible with 3.12 yet)
[testenv:py312-upgraded]
basepython = python3.12
basepython = python3.11
install_command =
python -m pip install -U {opts} {packages}
deps =
-rrequirements-dev.txt
commands = {[testenv]commands}

# Test with python 3.12; pinned dev reqs; upgraded run reqs
[testenv:py311-optional]
basepython = python3.11
deps =
-rrequirements-dev.txt
-rrequirements-opt.txt
commands = {[testenv]commands}

# Test with python 3.12; pinned dev reqs; upgraded, pre-release run reqs
[testenv:py312-prerelease]
basepython = python3.12
Expand Down

0 comments on commit 078149f

Please sign in to comment.