summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <stephen.finucane@intel.com>2015-11-12 04:54:31 +0000
committerStephen Finucane <stephen.finucane@intel.com>2015-11-21 17:07:40 +0000
commit73044ac036350686a605e7aff486566d0dbb1d82 (patch)
treea48c16c1c56910032bb9bd7dd2664015345085b0 /tox.ini
parent59e47314f6311f2ce03749ab4bb1cb1cafd99222 (diff)
downloadpatchwork-73044ac036350686a605e7aff486566d0dbb1d82.tar
patchwork-73044ac036350686a605e7aff486566d0dbb1d82.tar.gz
Add requirements-test.txt
It's annoying that Django is not installed by default when setting up a development environment. This is currently necessary because tox uses these requirements files and it needs to test against multiple versions of Django. Resolve this issue by adding a 'requirements-test' file, thus allowing for Django-ful and Django-less scenarios. This also allows us to delete 'requirements-base', which was a good idea but alas contained too few options to really be viable. A little duplication is better here. Signed-off-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index eaad449..70b09a5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -7,7 +7,7 @@ skipsdist = True
basepython =
py27: python2.7
deps =
- -r{toxinidir}/requirements-dev.txt
+ -r{toxinidir}/requirements-test.txt
django16: django>=1.6,<1.7
django17: django>=1.7,<1.8
django18: django>=1.8,<1.9