File tree 3 files changed +29
-8
lines changed
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
+
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 8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- os : [ ubuntu-latest, windows-latest, macOS-latest ]
11
+ os : [ ubuntu-latest, macOS-latest ]
12
12
python-version : [ "3.7", "3.8", "3.9" ]
13
13
14
14
steps :
19
19
python-version : ${{ matrix.python-version }}
20
20
- name : Install dependencies
21
21
run : |
22
- python -m pip install --upgrade pip
22
+ pip install --upgrade pip
23
+ python -m pip install -e .
23
24
pip install tox tox-gh-actions
24
25
- name : Test with tox
25
26
run : tox
Original file line number Diff line number Diff line change @@ -6,12 +6,6 @@ envlist =
6
6
python3.9
7
7
isolated_build = true
8
8
9
- [gh-actions]
10
- python =
11
- 3.7: python3.7
12
- 3.8: python3.8
13
- 3.9: python3.9
14
-
15
9
[testenv]
16
10
setenv =
17
11
PYTHONPATH = {toxinidir}
You can’t perform that action at this time.
0 commit comments