From 4c2925e1f0fb9559ff8fa070d4e4896ff2f5d9e5 Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Fri, 12 Sep 2014 08:51:36 -0400 Subject: [PATCH] Added SOUTH_TESTS_MIGRATE to settings. --- .travis.yml | 4 ++++ sample_project/sample_project/settings.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index e708bb9..e3024b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,10 @@ branches: matrix: exclude: + - + python: "2.6" + env: DJANGO_VERSION=1.5.10 + - python: "3.4" env: DJANGO_VERSION=1.5.10 diff --git a/sample_project/sample_project/settings.py b/sample_project/sample_project/settings.py index 3f07878..e2f2b6c 100644 --- a/sample_project/sample_project/settings.py +++ b/sample_project/sample_project/settings.py @@ -22,6 +22,8 @@ DATABASES = { } } +SOUTH_TESTS_MIGRATE = False + # Hosts/domain names that are valid for this site; required if DEBUG is False # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts ALLOWED_HOSTS = []