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 1484616 commit d7c45dcCopy full SHA for d7c45dc
.github/workflows/workflow.yaml
@@ -34,11 +34,10 @@ jobs:
34
steps:
35
- uses: actions/checkout@v3
36
37
- - name: Install dependencies
+ - name: Install Python package dependencies
38
run: |
39
- python -m pip install poetry
40
- poetry config virtualenvs.create false
41
- poetry install
+ python -m pip install -U pip pipenv
+ pipenv install --system --dev
42
43
- name: Linting
44
@@ -47,7 +46,7 @@ jobs:
47
46
pylint service tests --max-line-length=127
48
49
- name: Run unit tests with PyTest
50
- run: pytest
+ run: pytest --cov-report=xml
51
env:
52
DATABASE_URI: "redis://redis:6379/0"
53
0 commit comments