Added south app.
[wolnelektury.git] / apps / south / tests / __init__.py
diff --git a/apps/south/tests/__init__.py b/apps/south/tests/__init__.py
new file mode 100644 (file)
index 0000000..d8953fe
--- /dev/null
@@ -0,0 +1,11 @@
+
+from django.conf import settings
+
+try:
+    skiptest = settings.SKIP_SOUTH_TESTS
+except:
+    skiptest = False
+
+if not skiptest:
+    from south.tests.db import *
+    from south.tests.logic import *
\ No newline at end of file