File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 9
9
matrix :
10
10
os : [macOS-latest, ubuntu-18.04, windows-2019]
11
11
python-version : [3.6, 3.7, 3.8]
12
+ fail-fast : false
12
13
runs-on : ${{ matrix.os }}
13
14
steps :
14
15
- uses : actions/checkout@v1
@@ -28,13 +29,12 @@ jobs:
28
29
- name : Install Poetry
29
30
run : |
30
31
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
31
- python get-poetry.py
32
32
python get-poetry.py --version 1.0.10
33
33
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
34
34
shell : bash
35
35
- name : Install Package Dependencies
36
36
run : |
37
- poetry install --extras "optional plotting"
37
+ poetry install
38
38
poetry run python -c "import imageio;imageio.plugins.freeimage.download()"
39
39
shell : bash
40
40
- name : Lint with flake8
46
46
poetry run python -W ignore -m nose -q -v --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=$CI_PACKAGE $CI_PACKAGE
47
47
shell : bash
48
48
- name : Upload Coverage to coveralls.io
49
- if : matrix.python-version == '3.6' || matrix.python-version == '3.7'
50
49
run : |
51
50
if [ -z "$COVERALLS_REPO_TOKEN" ]; then echo \"COVERALLS_REPO_TOKEN\" secret is undefined!; else poetry run coveralls; fi
52
51
shell : bash
You can’t perform that action at this time.
0 commit comments