pyo3/examples/pyo3-pytests/tox.ini

11 lines
258 B
INI
Raw Normal View History

[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
[testenv]
description = Run the unit tests under {basepython}
2021-10-12 23:05:33 +00:00
deps = -rrequirements-dev.txt
2020-11-09 21:46:25 +00:00
commands =
2021-10-12 23:05:33 +00:00
python -m pip install .
2020-11-09 21:46:25 +00:00
pytest {posargs}