diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-12 15:55:59 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-05-12 15:55:59 -0500 |
commit | a98c95b41d08033f0539d19dfad10fb13a83d42d (patch) | |
tree | 3fbdf64209a13eaf5302a9e2abec054019655e57 /mediagoblin/tests/__init__.py | |
parent | 814554743708c567e40b86bc88b96633eef32ace (diff) | |
download | mediagoblin-a98c95b41d08033f0539d19dfad10fb13a83d42d.tar.lz mediagoblin-a98c95b41d08033f0539d19dfad10fb13a83d42d.tar.xz mediagoblin-a98c95b41d08033f0539d19dfad10fb13a83d42d.zip |
Tests should no longer use the environment-variable-related-setup and set up in app instead
This should remove a bunch of confusing cruft. I hate using that
environment variable! Also that old code was fragile.
This commit sponsored by Stephen Milton. Thanks!
Diffstat (limited to 'mediagoblin/tests/__init__.py')
-rw-r--r-- | mediagoblin/tests/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/tests/__init__.py b/mediagoblin/tests/__init__.py index 5a3235c6..7a88281e 100644 --- a/mediagoblin/tests/__init__.py +++ b/mediagoblin/tests/__init__.py @@ -18,12 +18,10 @@ import os import shutil from mediagoblin import mg_globals -from mediagoblin.tests.tools import ( - TEST_USER_DEV, suicide_if_bad_celery_environ) +from mediagoblin.tests.tools import TEST_USER_DEV def setup_package(): - suicide_if_bad_celery_environ() import warnings from sqlalchemy.exc import SAWarning |