Skip to content

Commit 45c80bc

Browse files
committed
Run tox tests on all OS variants
1 parent 10f9b06 commit 45c80bc

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

.github/workflows/tox.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
test:
1111
name: Test
12-
runs-on: ubuntu-latest
12+
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
1515
os: [windows-latest, ubuntu-latest, macos-latest]
@@ -28,19 +28,7 @@ jobs:
2828
run: |
2929
pip install tox
3030
31-
- name: Run Windows Test
32-
if: runner.os == 'Windows'
33-
run: |
34-
python -m tox -c python/tox_windows.ini
35-
36-
- name: Run Linux Test
37-
if: runner.os != 'Linux'
38-
run: |
39-
cd $GITHUB_WORKSPACE/python
40-
tox -e py
41-
42-
- name: Run MacOS Test
43-
if: runner.os != 'macOS'
31+
- name: Run Test
4432
run: |
4533
cd $GITHUB_WORKSPACE/python
4634
tox -e py

0 commit comments

Comments
 (0)