Another try with different mysql settings

This commit is contained in:
Griatch 2020-05-17 00:27:25 +02:00
parent 57dde94504
commit 72ac1f44cd

View file

@ -27,7 +27,7 @@ jobs:
if: ${{ matrix.TESTING_DB == 'postgresql' }} if: ${{ matrix.TESTING_DB == 'postgresql' }}
uses: harmon758/postgresql-action@v1 uses: harmon758/postgresql-action@v1
with: with:
postgresql version: '11' postgresql version: '10.7'
- name: Setup PostgreSQL database - name: Setup PostgreSQL database
if: ${{ matrix.TESTING_DB == 'postgresql' }} if: ${{ matrix.TESTING_DB == 'postgresql' }}
run: | run: |
@ -42,6 +42,8 @@ jobs:
uses: mirromutth/mysql-action@v1.1 uses: mirromutth/mysql-action@v1.1
with: with:
mysql version: '8.0' mysql version: '8.0'
mysql_user: root
mysql_password: root
- name: Setup MySQL database - name: Setup MySQL database
if: ${{ matrix.TESTING_DB == 'mysql' }} if: ${{ matrix.TESTING_DB == 'mysql' }}
run: | run: |
@ -54,6 +56,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install wheel
pip install psycopg2-binary pip install psycopg2-binary
pip install mysqlclient pip install mysqlclient
pip install coveralls pip install coveralls