Skip to content

Commit 6df92a5

Browse files
committed
Disable tests on Win for now
1 parent a0cc317 commit 6df92a5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ jobs:
2121
runs-on: ${{ matrix.platform }}
2222
strategy:
2323
matrix:
24-
# platform: [windows-latest]
25-
# , macos-latest
26-
platform: [ubuntu-latest, windows-latest]
24+
# platform: [ubuntu-latest, windows-latest] # , macos-latest
25+
platform: [ubuntu-latest]
2726
python-version: ['3.8', '3.9', '3.10']
2827

2928
steps:

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# For more information about tox, see https://tox.readthedocs.io/en/latest/
22
[tox]
3-
envlist = py{38,39,310}-{linux,windows}
3+
envlist = py{38,39,310}-{linux}
44
; envlist = py{38,39,310}-{linux,macos,windows}
55
isolated_build=true
66

@@ -13,13 +13,13 @@ python =
1313
[gh-actions:env]
1414
PLATFORM =
1515
ubuntu-latest: linux
16-
windows-latest: windows
16+
; windows-latest: windows
1717
; macos-latest: macos
1818

1919
[testenv]
2020
platform =
2121
linux: linux
22-
windows: win32
22+
; windows: win32
2323
; macos: darwin
2424
passenv =
2525
CI

0 commit comments

Comments
 (0)