Skip to content

Commit

Permalink
Disable only 360 for travis python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjwebb committed Sep 20, 2017
1 parent eea0a3b commit 31d971e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ addons:
language: python

python:
- "3.4"
- "3.5"

before_install:
Expand Down
4 changes: 3 additions & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
DJANGO_SETTINGS_MODULE=cove.settings py.test cove --cov --cov-report= $@
DJANGO_SETTINGS_MODULE=cove_360.settings py.test cove_360 --cov-append --cov --cov-report= $@
if [ "$TRAVIS_PYTHON_VERSION" != "3.4" ]; then
DJANGO_SETTINGS_MODULE=cove_360.settings py.test cove_360 --cov-append --cov --cov-report= $@
fi
DJANGO_SETTINGS_MODULE=cove_ocds.settings py.test cove_ocds --cov-append --cov --cov-report= $@
DJANGO_SETTINGS_MODULE=cove_iati.settings py.test cove_iati --cov-append --cov $@

0 comments on commit 31d971e

Please sign in to comment.