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

@ -10,7 +10,7 @@ SHORT_SHA="${TRAVIS_COMMIT:0:7}"
IMAGE_TAG="${SHORT_SHA}-${TRAVIS_BUILD_NUMBER}"
IMAGE_TAR="${CACHE_DIR}/${IMAGE}-${IMAGE_TAG}.tar.gz"
MYSQL_IMAGE="mysql:5.6"
MYSQL_IMAGE="mysql:5.7"
POSTGRES_IMAGE="postgres:9.6"
export MYSQL_ROOT_PASSWORD="quay"

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):