summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Coraor <nate@bx.psu.edu>2016-02-03 15:04:31 -0500
committerNate Coraor <nate@bx.psu.edu>2016-02-03 15:04:31 -0500
commit7845402567d7bffb1d09819590dd0941ff6674aa (patch)
tree9112145056c1683183e5951b51351e52b1379ce0
parenta6b44573c75e30aa6b7d26c7aaa80756c0f6f2cb (diff)
downloadwheel-7845402567d7bffb1d09819590dd0941ff6674aa.tar.gz
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]`
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
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