summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-08 06:40:40 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-08 06:40:49 +0000
commit009d0b0f17cc82919a683a1ecb6a334f5354090d (patch)
treea892178f3bfd61e0f42ccb31c17d54165d370ae9 /.github
parentReleasing debian version 1.23.2-2. (diff)
downloadmycli-009d0b0f17cc82919a683a1ecb6a334f5354090d.tar.xz
mycli-009d0b0f17cc82919a683a1ecb6a334f5354090d.zip
Merging upstream version 1.24.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 413b749..0a14472 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,13 +7,20 @@ on:
jobs:
linux:
-
- runs-on: ubuntu-latest
-
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
+ include:
+ - python-version: 3.6
+ os: ubuntu-16.04 # MySQL 5.7.32
+ - python-version: 3.7
+ os: ubuntu-18.04 # MySQL 5.7.32
+ - python-version: 3.8
+ os: ubuntu-18.04 # MySQL 5.7.32
+ - python-version: 3.9
+ os: ubuntu-20.04 # MySQL 8.0.22
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
@@ -42,6 +49,7 @@ jobs:
- name: Pytest / behave
env:
PYTEST_PASSWORD: root
+ PYTEST_HOST: 127.0.0.1
run: |
./setup.py test --pytest-args="--cov-report= --cov=mycli"