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 5a14c95 commit 7f60f6cCopy full SHA for 7f60f6c
.github/workflows/tests.yml
@@ -15,6 +15,9 @@ jobs:
15
matrix:
16
os: [ ubuntu-latest, macos-latest, windows-latest ]
17
python-version: [ '3.7', '3.8', '3.9', 'pypy-3.7' ]
18
+ exclude:
19
+ - os: macos-latest
20
+ python-version: 'pypy-3.7'
21
22
runs-on: ${{ matrix.os }}
23
@@ -32,6 +35,9 @@ jobs:
32
35
path: ~/.cache/pypoetry/virtualenvs
33
36
key: ${{ matrix.os }}-${{ matrix.python-version }}-poetry-${{ hashFiles('pyproject.toml') }}
34
37
38
+ - run: sudo apt-get install -y libxml2-dev libxslt-dev
39
+ if: ${{ matrix.os == 'ubuntu-latest' }}
40
+
41
- run: poetry install -E client_id -E filelike
42
43
- run: poetry run pytest
0 commit comments