Skip to content

Commit 228252d

Browse files
committed
Update CI workflow.
1 parent 61daf77 commit 228252d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
matrix:
1010
os: [macOS-latest, ubuntu-18.04, windows-2019]
1111
python-version: [3.6, 3.7, 3.8]
12+
fail-fast: false
1213
runs-on: ${{ matrix.os }}
1314
steps:
1415
- uses: actions/checkout@v1
@@ -28,13 +29,12 @@ jobs:
2829
- name: Install Poetry
2930
run: |
3031
curl -L https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
31-
python get-poetry.py
3232
python get-poetry.py --version 1.0.10
3333
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
3434
shell: bash
3535
- name: Install Package Dependencies
3636
run: |
37-
poetry install --extras "optional plotting"
37+
poetry install
3838
poetry run python -c "import imageio;imageio.plugins.freeimage.download()"
3939
shell: bash
4040
- name: Lint with flake8
@@ -46,7 +46,6 @@ jobs:
4646
poetry run python -W ignore -m nose -q -v --with-doctest --doctest-options=+ELLIPSIS --with-coverage --cover-package=$CI_PACKAGE $CI_PACKAGE
4747
shell: bash
4848
- name: Upload Coverage to coveralls.io
49-
if: matrix.python-version == '3.6' || matrix.python-version == '3.7'
5049
run: |
5150
if [ -z "$COVERALLS_REPO_TOKEN" ]; then echo \"COVERALLS_REPO_TOKEN\" secret is undefined!; else poetry run coveralls; fi
5251
shell: bash

0 commit comments

Comments
 (0)