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.
1 parent 7bcb56c commit 6b451cfCopy full SHA for 6b451cf
.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