# 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
- 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:
- 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 }}