From 7845402567d7bffb1d09819590dd0941ff6674aa Mon Sep 17 00:00:00 2001 From: Nate Coraor Date: Wed, 3 Feb 2016 15:04:31 -0500 Subject: Unpublished changes to extras_require cannot be reflected in tox envs if tox is configured to install wheel as a dep, since this installs wheel from PyPI, rather than the local source. Tox subsequently installs over this version using the sdist of the local copy that it builds, so the version used for the tests is correct, but it does not install any of the extras at that time. Fix this by having tox (and thereby pip) install `.[extras]` rather than `wheel[extras]` --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8930062..9590ab4 100644 --- a/tox.ini +++ b/tox.ini @@ -10,8 +10,8 @@ envlist = py26, py27, pypy, py33, py34, py35 commands = py.test deps = + .[tool,signatures] jsonschema pytest pytest-cov - wheel[tool,signatures] setuptools>3.0 -- cgit v1.2.1