Skip to content

Commit 246a06c

Browse files
committed
Disable macOS
1 parent 255ecfb commit 246a06c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
strategy:
2323
matrix:
2424
# platform: [windows-latest]
25-
platform: [ubuntu-latest, windows-latest, macos-latest]
25+
# , macos-latest
26+
platform: [ubuntu-latest, windows-latest]
2627
python-version: ['3.8', '3.9', '3.10']
2728

2829
steps:

tox.ini

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

67
[gh-actions]
@@ -12,14 +13,14 @@ python =
1213
[gh-actions:env]
1314
PLATFORM =
1415
ubuntu-latest: linux
15-
macos-latest: macos
1616
windows-latest: windows
17+
; macos-latest: macos
1718

1819
[testenv]
1920
platform =
2021
linux: linux
21-
macos: darwin
2222
windows: win32
23+
; macos: darwin
2324
passenv =
2425
CI
2526
PYTHONPATH

0 commit comments

Comments
 (0)