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 b0b4876 commit 52226caCopy full SHA for 52226ca
1 file changed
.github/workflows/python-package.yml
@@ -36,9 +36,13 @@ jobs:
36
run: |
37
pip install poetry poetry-plugin-export
38
poetry config virtualenvs.create false
39
- poetry export --with dev --extras dbc --format requirements.txt --output reqs.txt --without-hashes
40
- pip install -r reqs.txt
41
- pip install -e ".[dbc]"
+ if [ "${{ runner.os }}" = "Linux" ]; then
+ poetry install --without dev --extras dbc
+ pip install pre-commit
42
+ else
43
+ poetry install --without dev
44
+ fi
45
+ pip install pytest pytest-timeout pytest-retry pytest-asyncio pytest-cov
46
47
- name: Linting
48
if: matrix.os == 'ubuntu-latest'
0 commit comments