Drop windows from CI until we get a collab that actually uses it XD
parent
e24645eec8
commit
71f9881a60
|
@ -90,38 +90,38 @@ jobs:
|
||||||
# - https://docs.github.com/en/actions/learn-github-actions/managing-complex-workflows
|
# - https://docs.github.com/en/actions/learn-github-actions/managing-complex-workflows
|
||||||
# - https://docs.github.com/en/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
# - https://docs.github.com/en/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
||||||
# - https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idif
|
# - https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idif
|
||||||
testing-windows:
|
# testing-windows:
|
||||||
name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}'
|
# name: '${{ matrix.os }} Python ${{ matrix.python }} - ${{ matrix.spawn_backend }}'
|
||||||
timeout-minutes: 12
|
# timeout-minutes: 12
|
||||||
runs-on: ${{ matrix.os }}
|
# runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
# strategy:
|
||||||
fail-fast: false
|
# fail-fast: false
|
||||||
matrix:
|
# matrix:
|
||||||
os: [windows-latest]
|
# os: [windows-latest]
|
||||||
python: ['3.10']
|
# python: ['3.10']
|
||||||
spawn_backend: ['trio', 'mp']
|
# spawn_backend: ['trio', 'mp']
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
|
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v2
|
# uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup python
|
# - name: Setup python
|
||||||
uses: actions/setup-python@v2
|
# uses: actions/setup-python@v2
|
||||||
with:
|
# with:
|
||||||
python-version: '${{ matrix.python }}'
|
# python-version: '${{ matrix.python }}'
|
||||||
|
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: pip install -U . -r requirements-test.txt -r requirements-docs.txt --upgrade-strategy eager
|
# run: pip install -U . -r requirements-test.txt -r requirements-docs.txt --upgrade-strategy eager
|
||||||
|
|
||||||
# TODO: pretty sure this solves debugger deps-issues on windows, but it needs to
|
# # TODO: pretty sure this solves debugger deps-issues on windows, but it needs to
|
||||||
# be verified by someone with a native setup.
|
# # be verified by someone with a native setup.
|
||||||
# - name: Force pyreadline3
|
# # - name: Force pyreadline3
|
||||||
# run: pip uninstall pyreadline; pip install -U pyreadline3
|
# # run: pip uninstall pyreadline; pip install -U pyreadline3
|
||||||
|
|
||||||
- name: List dependencies
|
# - name: List dependencies
|
||||||
run: pip list
|
# run: pip list
|
||||||
|
|
||||||
- name: Run tests
|
# - name: Run tests
|
||||||
run: pytest tests/ --spawn-backend=${{ matrix.spawn_backend }} -rsx
|
# run: pytest tests/ --spawn-backend=${{ matrix.spawn_backend }} -rsx
|
||||||
|
|
Loading…
Reference in New Issue