From ddd1e52423cebd2ea58169b31973c45da8856524 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Mon, 22 Jun 2020 20:01:38 +0200 Subject: [PATCH] Add pip list to workflow, update setuptools Change-Id: I2e32ba315a79dcfc7c5f79ed6517ac0cee4f55e3 (cherry picked from commit 28c13f9092d457d9e476e2987ba9e83ae868407a) --- .github/workflows/run-test.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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 }} -- 2.39.5