Skip to content

Commit 0a3c89f

Browse files
committed
Enable testing on all platforms
1 parent 9f0acd1 commit 0a3c89f

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ${{ matrix.platform }}
2121
strategy:
2222
matrix:
23-
# platform: [ubuntu-latest, windows-latest, macos-latest]
24-
platform: [windows-latest]
25-
python-version: [3.8, 3.9] # 3.10
23+
# platform: [windows-latest]
24+
platform: [ubuntu-latest, windows-latest, macos-latest]
25+
python-version: [3.8, 3.9, 3.10]
2626

2727
steps:
2828
- uses: actions/checkout@v3

tox.ini

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

66
[gh-actions]
77
python =
88
3.8: py38
9+
3.9: py39
10+
3.10: py310
911

1012
[gh-actions:env]
1113
PLATFORM =
1214
ubuntu-latest: linux
13-
; macos-latest: macos
14-
; windows-latest: windows
15+
macos-latest: macos
16+
windows-latest: windows
1517

1618
[testenv]
1719
platform =
1820
linux: linux
19-
; macos: darwin
20-
; windows: win32
21+
macos: darwin
22+
windows: win32
2123
passenv =
2224
CI
2325
PYTHONPATH

0 commit comments

Comments
 (0)