Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rebuild-circleci-yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ py_version_map = {
"py39": "3.9",
"py310": "3.10",
"py311": "3.11",
"py312": "3.12",
"py313": "3.13",
"pypy3": "pypy3",
}

Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
[tox]
# NOTE: when adding Python versions, also update and re-run `./rebuild-circleci-yaml`
envlist=pypy3-{nose,nose2,pytest3,unit,unit2},py{37,38,39}-{nose,nose2,pytest3,unit,unit2},py{310,311}-{unit,nose2}
envlist=pypy3-{nose,nose2,pytest3,unit,unit2},py{37,38,39}-{nose,nose2,pytest3,unit,unit2},py{310,311,312,313}-{unit,nose2,pytest}

[testenv]
deps=
nose
mock
nose2: nose2
pytest: pytest
pytest2: pytest>=2,<3
pytest3: pytest>=3,<4
#pytest4: pytest>=4,<5
pytest8: pytest>=8,<9
unit2: unittest2
commands=
nose: nosetests
nose2: nose2
pytest2: py.test parameterized/test.py
pytest3: py.test parameterized/test.py
#pytest4: py.test parameterized/test.py
pytest: pytest parameterized/test.py
pytest8: pytest parameterized/test.py
unit: python -m unittest parameterized.test
unit2: unit2 parameterized.test
unit2: unit2 parameterized.test