File tree Expand file tree Collapse file tree 3 files changed +29
-8
lines changed
Expand file tree Collapse file tree 3 files changed +29
-8
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+
3+ orbs :
4+ win : circleci/windows@5.0
5+
6+ jobs :
7+ test :
8+ executor : win/default
9+ steps :
10+ - checkout
11+
12+ - run :
13+ name : Install Dependencies
14+ command : |
15+ pip install --upgrade pip
16+ python -m pip install -e .
17+ python -m pip install tox
18+
19+ - run :
20+ name : Run tests
21+ command : tox
22+
23+ workflows :
24+ windows-tests :
25+ jobs :
26+ - test
Original file line number Diff line number Diff line change 88 runs-on : ${{ matrix.os }}
99 strategy :
1010 matrix :
11- os : [ ubuntu-latest, windows-latest, macOS-latest ]
11+ os : [ ubuntu-latest, macOS-latest ]
1212 python-version : [ "3.7", "3.8", "3.9" ]
1313
1414 steps :
1919 python-version : ${{ matrix.python-version }}
2020 - name : Install dependencies
2121 run : |
22- python -m pip install --upgrade pip
22+ pip install --upgrade pip
23+ python -m pip install -e .
2324 pip install tox tox-gh-actions
2425 - name : Test with tox
2526 run : tox
Original file line number Diff line number Diff line change @@ -6,12 +6,6 @@ envlist =
66 python3.9
77isolated_build = true
88
9- [gh-actions]
10- python =
11- 3.7: python3.7
12- 3.8: python3.8
13- 3.9: python3.9
14-
159[testenv]
1610setenv =
1711 PYTHONPATH = {toxinidir}
You can’t perform that action at this time.
0 commit comments