Skip to content

Commit d7c45dc

Browse files
committed
Updated for pipenv
1 parent 1484616 commit d7c45dc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/workflow.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v3
3636

37-
- name: Install dependencies
37+
- name: Install Python package dependencies
3838
run: |
39-
python -m pip install poetry
40-
poetry config virtualenvs.create false
41-
poetry install
39+
python -m pip install -U pip pipenv
40+
pipenv install --system --dev
4241
4342
- name: Linting
4443
run: |
@@ -47,7 +46,7 @@ jobs:
4746
pylint service tests --max-line-length=127
4847
4948
- name: Run unit tests with PyTest
50-
run: pytest
49+
run: pytest --cov-report=xml
5150
env:
5251
DATABASE_URI: "redis://redis:6379/0"
5352

0 commit comments

Comments
 (0)