File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -101,14 +101,25 @@ jobs:
101
101
python-version : ${{ matrix.python }}
102
102
architecture : ${{ matrix.python_arch }}
103
103
104
- - name : test
104
+ - name : test [unix-like shells]
105
+ if : runner.os != 'Windows'
105
106
run : |
106
107
${{ steps.setup.outputs.python-path }} -m venv .venv
107
108
source .venv/bin/activate
108
109
python -m pip install --upgrade pip
109
110
pip install -r ci/requirements.txt
110
111
tox -e ${{ matrix.tox_env }} -v
111
112
113
+ - name : test [windows]
114
+ if : runner.os == 'Windows'
115
+ shell : pwsh
116
+ run : |
117
+ ${{ steps.setup.outputs.python-path }} -m venv .venv
118
+ . .venv\Scripts\activate
119
+ python -m pip install --upgrade pip
120
+ pip install -r ci/requirements.txt
121
+ tox -e ${{ matrix.tox_env }} -v
122
+
112
123
coveralls :
113
124
name : Upload coverage to Coveralls
114
125
if : github.ref == 'refs/heads/main'
You can’t perform that action at this time.
0 commit comments