diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-07-10 13:56:32 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 10:28:49 -0700 |
commit | c37f31fbf3683ab8931ff43d98a743d607cea70c (patch) | |
tree | 15176e1b7d599f7f4c9eee62ce63cd204a527fb2 /mediagoblin/tests | |
parent | 33b5cebe750a8bc8a96401bd6cda729fa9b00a9d (diff) | |
download | mediagoblin-c37f31fbf3683ab8931ff43d98a743d607cea70c.tar.lz mediagoblin-c37f31fbf3683ab8931ff43d98a743d607cea70c.tar.xz mediagoblin-c37f31fbf3683ab8931ff43d98a743d607cea70c.zip |
use new in-memory db for testing
Diffstat (limited to 'mediagoblin/tests')
-rw-r--r-- | mediagoblin/tests/auth_configs/authentication_disabled_appconfig.ini | 4 | ||||
-rw-r--r-- | mediagoblin/tests/auth_configs/openid_appconfig.ini | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mediagoblin/tests/auth_configs/authentication_disabled_appconfig.ini b/mediagoblin/tests/auth_configs/authentication_disabled_appconfig.ini index a64e9e40..07c69442 100644 --- a/mediagoblin/tests/auth_configs/authentication_disabled_appconfig.ini +++ b/mediagoblin/tests/auth_configs/authentication_disabled_appconfig.ini @@ -3,8 +3,8 @@ direct_remote_path = /test_static/ email_sender_address = "notice@mediagoblin.example.org" email_debug_mode = true -# TODO: Switch to using an in-memory database -sql_engine = "sqlite:///%(here)s/user_dev/mediagoblin.db" +sql_engine = "sqlite://" +run_migrations = true # Celery shouldn't be set up by the application as it's setup via # mediagoblin.init.celery.from_celery diff --git a/mediagoblin/tests/auth_configs/openid_appconfig.ini b/mediagoblin/tests/auth_configs/openid_appconfig.ini index c2bd82fd..3433e139 100644 --- a/mediagoblin/tests/auth_configs/openid_appconfig.ini +++ b/mediagoblin/tests/auth_configs/openid_appconfig.ini @@ -18,8 +18,8 @@ direct_remote_path = /test_static/ email_sender_address = "notice@mediagoblin.example.org" email_debug_mode = true -# TODO: Switch to using an in-memory database -sql_engine = "sqlite:///%(here)s/user_dev/mediagoblin.db" +sql_engine = "sqlite://" +run_migrations = true # Celery shouldn't be set up by the application as it's setup via # mediagoblin.init.celery.from_celery |