summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2022-02-07 10:13:08 +0000
committerStephen Finucane <stephenfin@redhat.com>2022-02-08 11:44:39 +0000
commit948e811412ea0a83a8fc466719da5f6e75746954 (patch)
treef5874d34d0cbba075adaed939038f0841422a4b4
parent7e7ea8982031e87033999ad49d65f92d2e1491a6 (diff)
downloadfixtures-git-948e811412ea0a83a8fc466719da5f6e75746954.tar.gz
tox: Install extras properly
The disabling of sdists and circular dependency with testtools seemed to result in us dragging in fixtures from PyPI rather than using the local source. Address this by building the sdist locally. Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
-rw-r--r--tox.ini5
1 files changed, 3 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 03546eb..4c7a792 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,11 @@
[tox]
envlist = py36,py37,py38,py39,py310,pypy3
minversion = 3.1
-skipsdist = true
[testenv]
usedevelop = true
whitelist_externals = make
-deps = .[docs,test]
+extras =
+ docs
+ test
commands = make check