From 912399c12afd1ffc311be67120b77d31ceb8546b Mon Sep 17 00:00:00 2001 From: Craig Blaszczyk Date: Fri, 29 Jul 2011 13:04:22 +0100 Subject: [PATCH] change flag default for backwards compatibility --- djangorestframework/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangorestframework/tests/__init__.py b/djangorestframework/tests/__init__.py index c58b88e7f..597bd4cd6 100644 --- a/djangorestframework/tests/__init__.py +++ b/djangorestframework/tests/__init__.py @@ -5,7 +5,7 @@ from django.conf import settings try: skiptest = settings.SKIP_DJANGORESTFRAMEWORK_TESTS except: - skiptest = True + skiptest = False if not skiptest: import os