Fix failing full-db tests
This commit is contained in:
parent
e2bde377d6
commit
0501e0b996
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ SHORT_SHA="${TRAVIS_COMMIT:0:7}"
|
||||||
IMAGE_TAG="${SHORT_SHA}-${TRAVIS_BUILD_NUMBER}"
|
IMAGE_TAG="${SHORT_SHA}-${TRAVIS_BUILD_NUMBER}"
|
||||||
IMAGE_TAR="${CACHE_DIR}/${IMAGE}-${IMAGE_TAG}.tar.gz"
|
IMAGE_TAR="${CACHE_DIR}/${IMAGE}-${IMAGE_TAG}.tar.gz"
|
||||||
|
|
||||||
MYSQL_IMAGE="mysql:5.6"
|
MYSQL_IMAGE="mysql:5.7"
|
||||||
POSTGRES_IMAGE="postgres:9.6"
|
POSTGRES_IMAGE="postgres:9.6"
|
||||||
|
|
||||||
export MYSQL_ROOT_PASSWORD="quay"
|
export MYSQL_ROOT_PASSWORD="quay"
|
||||||
|
|
|
@ -71,7 +71,7 @@ def app_reloader(liveserver, server_executor):
|
||||||
yield
|
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")
|
reason="not supported for non SQLite testing")
|
||||||
def test_storage_proxy_auth(storage, liveserver_app, liveserver_session, is_proxying_enabled,
|
def test_storage_proxy_auth(storage, liveserver_app, liveserver_session, is_proxying_enabled,
|
||||||
app_reloader):
|
app_reloader):
|
||||||
|
|
Reference in a new issue