diff options
author | Chris Rose <offline@offby1.net> | 2018-05-14 12:20:52 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-05-16 16:48:58 -0400 |
commit | 8fa7c00929fd11cc433dce616f38426ae3ea2f9a (patch) | |
tree | d03e113714dd427b4bbb2f1fee98e87cf31574e5 /dev-requirements.txt | |
parent | dc44094485a33101c1715147a968e97b13a95292 (diff) |
Test and dev dependencies cleanup and sync with Fabric
* Update invocations min version
* Update pytest to be consistent with fabric
* Add pytest-xdist to enable `guard` task
* Other dependencies as found to be inconsistent with Fabric2
Diffstat (limited to 'dev-requirements.txt')
-rw-r--r-- | dev-requirements.txt | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt index 80e82134..c347b632 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,11 +1,23 @@ +# Invocations for common project tasks invoke>=0.13,<2.0 -invocations>=0.13,<2.0 -sphinx>=1.1.3,<1.5 -alabaster>=0.7.5,<2.0 -releases>=1.1.0,<2.0 -semantic_version<3.0 +invocations>=1.0,<2.0 +# NOTE: pytest-relaxed currently only works with pytest >=3, <3.3 +pytest>=3.2,<3.3 +pytest-relaxed==1.1.2 +#pytest-xdist for test dir watching and the inv guard task +pytest-xdist>=1.22,<2.0 +# Linting! +flake8==2.4.0 +# Coverage! +coverage==3.7.1 +codecov==1.6.3 +# Documentation tools +sphinx>=1.4,<1.7 +alabaster>=0.7,<2.0 +releases>=1.5,<2.0 +# Release tools +semantic_version>=2.4,<2.5 wheel==0.24 -twine>=1.11.0 -flake8==2.6.2 -pytest==3.2.1 -pytest_relaxed==1.0.0 +twine==1.11.0 + + |