Test htsworkflow under several different django & python versions django1.7
authorDiane Trout <diane@testing.woldlab.caltech.edu>
Fri, 10 Mar 2017 00:42:26 +0000 (16:42 -0800)
committerDiane Trout <diane@testing.woldlab.caltech.edu>
Fri, 10 Mar 2017 00:48:30 +0000 (16:48 -0800)
tox.ini [new file with mode: 0644]

diff --git a/tox.ini b/tox.ini
new file mode 100644 (file)
index 0000000..1c61feb
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,14 @@
+[tox]
+envlist=py{27,35}-django{18,19,110}-{sqlite,psql}
+
+[testenv]
+commands=django-admin.py test
+setenv =
+  sqlite: DJANGO_SETTINGS_MODULE=htsworkflow.settings.sqlite
+  psql: DJANGO_SETTINGS_MODULE=htsworkflow.settings.psql
+  PYTHONPATH={toxinidir}
+deps =
+  django18: Django>=1.8,<1.9
+  django19: Django>=1.9,<1.10
+  django110: Django>=1.10,<1.11
+  psql: psycopg2
\ No newline at end of file