We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7bcb56c + 6b451cf commit 7e64d74Copy full SHA for 7e64d74
.github/workflows/tests.yml
@@ -9,7 +9,8 @@ jobs:
9
matrix:
10
os: [ubuntu-18.04, macOS-10.14]
11
python: [ '3.5', '3.6', '3.7' ]
12
- name: python${{ matrix.python }} on ${{ matrix.os }}
+ extras: [ "", "[images]" ]
13
+ name: python${{ matrix.python }} on ${{ matrix.os }} ${{ matrix.extras }}
14
steps:
15
- uses: actions/checkout@master
16
- uses: actions/setup-python@v1
@@ -20,6 +21,7 @@ jobs:
20
21
run: |
22
pip install --upgrade --no-cache-dir pipenv
23
pipenv install --dev
24
+ pipenv install .${{ matrix.extras }}
25
- name: Run tests
26
run: pipenv run pytest
27
- name: Report coverage
0 commit comments