Skip to content

Commit 8b360d5

Browse files
authored
Update python-package.yml
1 parent c8e29a6 commit 8b360d5

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,16 @@ jobs:
2323
uses: actions/setup-python@v2
2424
with:
2525
python-version: ${{ matrix.python-version }}
26+
2627
- name: Install dependencies
2728
run: |
2829
python -m pip install --upgrade pip
2930
python -m pip install pytest pytest-cov
3031
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32+
3133
- name: Test with pytest
3234
run: |
3335
python3 -m pytest --cov=fastapi_featureflags -v tests/ --disable-warnings
36+
37+
- name: CodeCov
38+
run: bash <(curl -s https://codecov.io/bash)

0 commit comments

Comments
 (0)