From 0c4600280f86d5ff4395637557f46a0dae418bc9 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 30 Jun 2019 10:25:34 -0400 Subject: [PATCH] Use built-in tox support for PEP 518 We don't need to manually invoke `flit`; with `isolated_build`, tox supports non-setuptools builds out of the box. --- tox.ini | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index f0d89fd..77dfcc3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,15 +1,12 @@ [tox] envlist = py34,py35,py36,py37 -skipsdist = True +isolated_build = True [testenv] setenv = PYTHON_EGG_CACHE = {toxworkdir}/egg-cache PYTHONHASHSEED = 0 -deps = - flit commands = - flit install coverage run python -m unittest -s tests coverage report py37: flake8