summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-06-22 20:01:38 +0200
committerFederico Caselli <cfederico87@gmail.com>2020-06-22 21:57:01 +0200
commitfbb455e2e520828627324297a48e24e92d2b48a8 (patch)
tree46b159c07187c3b6a862ce6804768a033f659f66
parent56e817bb0ef4eaca189b42b930a6e99ee4ed0671 (diff)
downloadsqlalchemy-fbb455e2e520828627324297a48e24e92d2b48a8.tar.gz
Add pip list to workflow, update setuptools
Change-Id: I2e32ba315a79dcfc7c5f79ed6517ac0cee4f55e3
-rw-r--r--.github/workflows/run-test.yaml13
1 files changed, 10 insertions, 3 deletions
diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml
index 8169571fe..12b5ebafd 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 }}