15 lines
305 B
INI
15 lines
305 B
INI
# content of: tox.ini , put in same dir as setup.py
|
|
[tox]
|
|
requires = tox-conda
|
|
envlist = py36, py37, py38, py39
|
|
|
|
[testenv]
|
|
# install pytest in the virtualenv where commands will be executed
|
|
deps =
|
|
pytest
|
|
.
|
|
|
|
commands =
|
|
# NOTE: you can run any command line tool here - not just tests
|
|
pytest
|