Skip to content

Commit

Permalink
Update tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored Mar 12, 2024
1 parent 059a125 commit 14b778f
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ deps =
-rrequirements-dev.txt
commands = {[testenv]commands}

# Test with python 3.12; pinned dev reqs; upgraded, pre-release run reqs
[testenv:py312-prerelease]
basepython = python3.12
install_command =
python -m pip install -U --pre {opts} {packages}
deps =
-rrequirements-dev.txt
commands = {[testenv]commands}

# Test with python 3.8; pinned dev reqs; minimum run reqs
[testenv:py38-minimum]
basepython = python3.8
Expand Down Expand Up @@ -75,6 +84,14 @@ deps =
-rrequirements-dev.txt
commands = {[testenv:build]commands}

[testenv:build-py312-prerelease]
basepython = python3.12
install_command =
python -m pip install -U --pre {opts} {packages}
deps =
-rrequirements-dev.txt
commands = {[testenv:build]commands}

[testenv:build-py38-minimum]
basepython = python3.8
deps =
Expand All @@ -88,7 +105,7 @@ deps = null
commands = python -c "import pynwb"

# Envs that will execute gallery tests that do not require ROS3
# Test with pinned dev, doc, run, and optional reqs
# Test with pinned dev, doc, and run reqs
[testenv:gallery]
install_command =
python -m pip install -U {opts} {packages}
Expand Down Expand Up @@ -121,7 +138,7 @@ basepython = python3.11
deps = {[testenv:gallery]deps}
commands = {[testenv:gallery]commands}

# Test with python 3.12; pinned dev, doc, and optional reqs; upgraded run reqs
# Test with python 3.12; pinned dev, and doc reqs; upgraded run reqs
[testenv:gallery-py312-upgraded]
basepython = python3.12
deps =
Expand Down

0 comments on commit 14b778f

Please sign in to comment.