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 69df256 commit 318deeaCopy full SHA for 318deea
.github/workflows/CI.yaml
@@ -24,11 +24,12 @@ jobs:
24
- name: Setup tests
25
run: |
26
pip install --upgrade pip
27
- pip install poetry
+ curl -sSL https://install.python-poetry.org | python3 -
28
+ poetry config virtualenvs.create false
29
poetry install
30
31
- name: Run tests & CodeCov
- run: |
32
+ run: |
33
coverage run -m pytest
34
coverage report
35
coverage xml
0 commit comments