pyo3/examples/word-count/tox.ini

11 lines
256 B
INI
Raw Normal View History

2018-10-09 16:21:52 +00:00
[tox]
2020-11-09 21:46:25 +00:00
# can't install from sdist because local pyo3 repo can't be included in the sdist
skipsdist=true
2018-10-09 16:21:52 +00:00
[testenv]
description = Run the unit tests under {basepython}
deps = -rrequirements-dev.txt
2020-11-09 21:46:25 +00:00
commands =
python setup.py install
pytest {posargs}