Disabling github action for the mysql test for now

At this time the mysql database spun up by github actions is not
possible to connect to once evennia starts. It's unclear why this is.
This commit is contained in:
Griatch 2020-05-18 00:15:59 +02:00
parent fccd70ad74
commit e0ae1d3742

View file

@ -16,7 +16,8 @@ jobs:
strategy:
matrix:
python-version: [3.7, 3.8]
TESTING_DB: ['sqlite3', 'postgresql', 'mysql']
# TODO: mysql disabled, not able to connect to it so far
TESTING_DB: ['sqlite3', 'postgresql'] # , 'mysql']
fail-fast: False
steps: