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 ac0389e commit e2a56dcCopy full SHA for e2a56dc
.github/workflows/ci.yml
@@ -79,10 +79,16 @@ jobs:
79
run: apk add --no-cache git curl python3 py3-pip
80
- name: Checkout
81
uses: actions/checkout@v4
82
+ - name: Create virtual environment
83
+ run: python -m venv .venv
84
- name: Install Python dependencies
- run: pip install -r app/requirements.txt
85
+ run: |
86
+ source .venv/bin/activate
87
+ pip install -r app/requirements.txt
88
- name: Run tests and collect coverage
- run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
89
90
91
+ pytest --cov app ${{ env.CODECOV_ATS_TESTS }}
92
- name: Upload coverage to Codecov
93
run: ./dist/codecov.sh
94
env:
0 commit comments