Skip to content

Commit b45a975

Browse files
committed
[gh actions] Reduce windows build matrix
The current rdflib dependency causes random issues on some of the github actions windows builds; since the appveyor builds are passing without any issue, keep most gh actions windows builds deactivated until the rdflib dependency has been been updated.
1 parent 5c8a2ca commit b45a975

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,18 @@ jobs:
4848
pip install -r requirements-test.txt
4949
- name: Run tests
5050
run: pytest
51+
# The current rdflib dependency causes random issues on some of
52+
# the github actions windows builds; since the appveyor builds
53+
# are passing without any issue, keep most gh actions windows
54+
# builds deactivated until the rdflib dependency has been
55+
# been updated.
5156
win_tests:
5257
continue-on-error: true
5358
runs-on: ${{ matrix.os }}
5459
strategy:
5560
matrix:
5661
os: [windows-latest]
57-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
62+
python-version: ["3.10"]
5863
steps:
5964
- uses: actions/checkout@v2
6065
- name: Setup Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)