Skip to content

Commit 91a4338

Browse files
authored
Merge pull request #265 from aio-libs/fixt-mysql
Fix mysql backend tests
2 parents 1a1104d + abe652f commit 91a4338

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/db_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
def pytest_namespace():
17-
dbs = 'pg', 'mongo'
17+
dbs = 'pg', 'mongo', 'mysql'
1818
return {'admin_type_list': dbs}
1919

2020

tests/docker_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def mysql_params(mysql_server):
144144

145145
@pytest.fixture(scope='session')
146146
def mysql_server(host, unused_port, container_starter):
147-
tag = '8.0'
147+
tag = '5.7'
148148
image = 'mysql:{}'.format(tag)
149149

150150
internal_port = 3306

0 commit comments

Comments
 (0)