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 | 2a948fca4c00e144afd6269e2e2d519e8a02c92c (patch) | |
| tree | 3483d1be455b4bc2a2eace19f0e5a354b39ba3d1 | |
| parent | 1ae65d1a51c86031208bdfc74d155f6acfc82e13 (diff) | |
| download | Ishtar-2a948fca4c00e144afd6269e2e2d519e8a02c92c.tar.bz2 Ishtar-2a948fca4c00e144afd6269e2e2d519e8a02c92c.zip | |
Disable test dealing with views when no south migration is done
| -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): | 
