diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-21 12:41:27 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-21 12:41:27 +0100 |
commit | 810da4b1790c1a2701fd8210d95a0c5f4675dafd (patch) | |
tree | 3483d1be455b4bc2a2eace19f0e5a354b39ba3d1 /archaeological_operations/tests.py | |
parent | 61c3267725423ca44d75e5e3c70cd89f3d384ce5 (diff) | |
download | Ishtar-810da4b1790c1a2701fd8210d95a0c5f4675dafd.tar.bz2 Ishtar-810da4b1790c1a2701fd8210d95a0c5f4675dafd.zip |
Disable test dealing with views when no south migration is done
Diffstat (limited to 'archaeological_operations/tests.py')
-rw-r--r-- | archaeological_operations/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index fa5d8f32b..d8399eedb 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -712,8 +712,8 @@ class OperationWizardDeleteTest(OperationWizardCreationTest): ] def pass_test(self): - if settings.USE_SPATIALITE_FOR_TESTS: - # SPATIALITE mess with views so no test for now... + if not settings.SOUTH_TESTS_MIGRATE: + # with no migration the views are not created return True def pre_wizard(self): |