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.
This commit is contained in:
Paul Ganssle 2019-04-24 09:43:37 -04:00
parent c3fee87dee
commit f42ee00980
No known key found for this signature in database
GPG Key ID: CD54FCE3D964BEFB
1 changed files with 2 additions and 2 deletions

View File

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