Fix failing full-db tests

This commit is contained in:
Brad Ison 2018-06-13 12:00:04 -04:00
parent e2bde377d6
commit 0501e0b996
No known key found for this signature in database
GPG key ID: 972D14B0BE6DE287
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ def app_reloader(liveserver, server_executor):
yield
@pytest.mark.skipif(os.environ.get('TEST_DATABASE_URI'),
@pytest.mark.skipif(os.environ.get('TEST_DATABASE_URI') is not None,
reason="not supported for non SQLite testing")
def test_storage_proxy_auth(storage, liveserver_app, liveserver_session, is_proxying_enabled,
app_reloader):