File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 1010 - master
1111
1212jobs :
13- test :
13+ build :
1414 runs-on : ${{ matrix.os }}
1515 strategy :
1616 max-parallel : 4
1717 matrix :
18- python-version : [3.6, 3.7, 3.8]
19- os : [ubuntu-latest, macos-latest]
18+ python-version : [3.5, 3.6, 3.7, 3.8]
19+ os : [windows-latest, ubuntu-18.04, macos-latest]
20+ exclude :
21+ # Python 3.5 is unable to properly
22+ # find the recent VS tooling
23+ # https://bugs.python.org/issue30389
24+ - os : windows-latest
25+ python-version : 3.5
2026
2127 steps :
2228 - uses : actions/checkout@v1
4046 with :
4147 python-version : ${{ matrix.python-version }}
4248
43- - name : Install Python Deps
44- if : steps.release.outputs.version == 0
45- run : |
46- pip install --upgrade setuptools pip wheel
47- pip download --dest=/tmp/deps .[test]
48- pip install -U --no-index --find-links=/tmp/deps /tmp/deps/*
49-
5049 - name : Test
5150 if : steps.release.outputs.version == 0
5251 run : |
53- make debug && make test
52+ pip install -e .
53+ python setup.py test
You can’t perform that action at this time.
0 commit comments