diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-24 17:13:34 -0700 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-26 11:39:08 -0700 |
commit | 8b7343c611c08793e1e796059e28e0903b5b5174 (patch) | |
tree | f994ec7647258c1dd11b3683319db277dbe6e106 /mediagoblin/tests | |
parent | 544b7b47a16cff8a140e2e89784b7d6ad8a31286 (diff) | |
download | mediagoblin-8b7343c611c08793e1e796059e28e0903b5b5174.tar.lz mediagoblin-8b7343c611c08793e1e796059e28e0903b5b5174.tar.xz mediagoblin-8b7343c611c08793e1e796059e28e0903b5b5174.zip |
Add comment questioning why run_dbupdate is needed in get_app test utility
* mediagoblin/tests/tools.py (get_app): Add comment
Diffstat (limited to 'mediagoblin/tests')
-rw-r--r-- | mediagoblin/tests/tools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mediagoblin/tests/tools.py b/mediagoblin/tests/tools.py index 77a9a86c..39b9ac50 100644 --- a/mediagoblin/tests/tools.py +++ b/mediagoblin/tests/tools.py @@ -125,6 +125,8 @@ def get_app(request, paste_config=None, mgoblin_config=None): app_config = global_config['mediagoblin'] # Run database setup/migrations + # @@: The *only* test that doesn't pass if we remove this is in + # test_persona.py... why? run_dbupdate(app_config, global_config) # setup app and return |