X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7d801e715b70774ff4f2a238045385e093701a8e..21f878e8112cf1f9b732a6dbb77e70efa68a01aa:/apps/south/tests/__init__.py diff --git a/apps/south/tests/__init__.py b/apps/south/tests/__init__.py new file mode 100644 index 000000000..d8953fefe --- /dev/null +++ b/apps/south/tests/__init__.py @@ -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