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 8eeee61 commit 78fcdc3Copy full SHA for 78fcdc3
.github/workflows/dev.yml
@@ -31,11 +31,15 @@ jobs:
31
sudo apt install -y pipx git
32
pipx ensurepath
33
pipx install poetry
34
+
35
+ - name: Clean Poetry Environment
36
+ run: poetry env remove python || true
37
38
- name: Test coverage for Gateway API
39
run: |
40
export PATH=/root/.local/bin:$PATH
41
cd microservices/gatewayApi
- poetry install --no-root
42
+ poetry install --no-root --no-cache
43
ENV=test GITHASH=11223344 \
44
poetry run coverage run --branch -m pytest -s -v
45
poetry run coverage xml
0 commit comments