From: Federico Caselli Date: Mon, 22 Jun 2020 18:01:38 +0000 (+0200) Subject: Add pip list to workflow, update setuptools X-Git-Tag: rel_1_4_0b1~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbb455e2e520828627324297a48e24e92d2b48a8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add pip list to workflow, update setuptools Change-Id: I2e32ba315a79dcfc7c5f79ed6517ac0cee4f55e3 --- diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 8169571fe8..12b5ebafd4 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -44,6 +44,13 @@ jobs: # the mock reconnect test seems to fail on the ci in windows - os: "windows-latest" pytest-args: "-k 'not MockReconnectTest'" + # python 2.7 or 3.5 on windows seem to fail also test_hanging_connect_within_overflow + - os: "windows-latest" + python-version: "3.5" + pytest-args: "-k 'not MockReconnectTest and not test_hanging_connect_within_overflow'" + - os: "windows-latest" + python-version: "2.7" + pytest-args: "-k 'not MockReconnectTest and not test_hanging_connect_within_overflow'" exclude: # c-extensions fail to build on windows for python 3.5 and 2.7 @@ -59,8 +66,7 @@ jobs: - os: "macos-latest" architecture: x86 - # abort all jobs as soon as one fails - fail-fast: true + fail-fast: false # steps to run in each job. Some are github actions, others run shell commands steps: @@ -76,7 +82,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox + pip install --upgrade tox setuptools + pip list - name: Run tests run: tox -e github-${{ matrix.build-type }} -- -q --nomemory ${{ matrix.pytest-args }}