diff options
author | Josh <josh@halfnibble.com> | 2016-02-26 23:53:55 -0800 |
---|---|---|
committer | Josh <josh@halfnibble.com> | 2016-02-26 23:53:55 -0800 |
commit | 31e8590845bbc94c72eabea798e1c0ea3a5571d2 (patch) | |
tree | 75f504845863f148f6426dcd5974dc8c4721b2ad /wkhtmltopdf/tests | |
parent | d7bb07ad4468d738f5ba321ee730921f3886e5a3 (diff) | |
download | django-wkhtmltopdf-31e8590845bbc94c72eabea798e1c0ea3a5571d2.tar.gz django-wkhtmltopdf-31e8590845bbc94c72eabea798e1c0ea3a5571d2.tar.bz2 django-wkhtmltopdf-31e8590845bbc94c72eabea798e1c0ea3a5571d2.zip |
Remove extraneous try/except. Revert test run script changes, but set DEBUG=False.
Diffstat (limited to 'wkhtmltopdf/tests')
-rw-r--r-- | wkhtmltopdf/tests/run.py | 44 |
1 files changed, 16 insertions, 28 deletions
diff --git a/wkhtmltopdf/tests/run.py b/wkhtmltopdf/tests/run.py index b969a29..e0021ab 100644 --- a/wkhtmltopdf/tests/run.py +++ b/wkhtmltopdf/tests/run.py @@ -9,28 +9,8 @@ DIRNAME = os.path.abspath(os.path.dirname(__file__)) sys.path.insert(0, os.getcwd()) -def run_tests(): - # Utility function to executes tests. - # Will be called twice. Once with DEBUG=True and once with DEBUG=False. - try: - django.setup() - except AttributeError: - pass # Django < 1.7; okay to ignore - - - try: - from django.test.runner import DiscoverRunner - except ImportError: - from discover_runner.runner import DiscoverRunner - - - test_runner = DiscoverRunner(verbosity=1) - failures = test_runner.run_tests(['wkhtmltopdf']) - if failures: - sys.exit(1) - settings.configure( - DEBUG=True, + DEBUG=False, DATABASES={ 'default': { 'ENGINE': 'django.db.backends.sqlite3', @@ -49,14 +29,22 @@ settings.configure( MEDIA_URL='/media/', STATIC_ROOT=os.path.join(DIRNAME, 'static'), STATIC_URL='/static/', - WKHTMLTOPDF_DEBUG=True, + WKHTMLTOPDF_DEBUG=False, ) -# Run tests with True debug settings (persistent temporary files). -run_tests() +try: + django.setup() +except AttributeError: + pass # Django < 1.7; okay to ignore + + +try: + from django.test.runner import DiscoverRunner +except ImportError: + from discover_runner.runner import DiscoverRunner -settings.DEBUG = False -settings.WKHTMLTOPDF_DEBUG = False -# Run tests with False debug settings to test temporary file delete operations. -run_tests() +test_runner = DiscoverRunner(verbosity=1) +failures = test_runner.run_tests(['wkhtmltopdf']) +if failures: + sys.exit(1) |