pyo3/examples/rustapi_module/tox.ini
Paul Ganssle f42ee00980
Update tox configuration for PEP 517
This drops "usedevelop", which does an editable installation of the
directory in favor of an isolated PEP 517/518 build environment. The
minimum version of tox has been bumped to one that has PEP 518 support.
2019-04-25 07:06:29 -04:00

14 lines
266 B
INI

[tox]
envlist = py35,
py36,
py37,
pypy35
minversion = 3.4.0
skip_missing_interpreters = true
isolated_build = true
[testenv]
description = Run the unit tests under {basepython}
deps = -rrequirements-dev.txt
commands = pytest {posargs}