13 lines
202 B
INI
13 lines
202 B
INI
# content of: tox.ini , put in same dir as setup.py
|
|
[tox]
|
|
envlist = py36, py37, py38, py39
|
|
[testenv]
|
|
deps=pytest
|
|
commands=py.test test
|
|
|
|
[travis]
|
|
python =
|
|
3.6: py36
|
|
3.7: py37
|
|
3.8: py38
|
|
3.9: py39
|