-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (33 loc) · 701 Bytes
/
tox.ini
File metadata and controls
36 lines (33 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27,py34,py35,py38,py39,py310,py311,py312,py313,py314
[gh]
; Github Action
python =
3.10 = py310
3.11 = py311
3.12 = py312
3.13 = py313
3.14 = py314
[testenv]
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
py313: python3.13
py314: python3.14
commands =
pytest \
[]
deps =
pytest
pytest-cov
flake8