mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
Pytest workflow: Upload coverage report to codecov
This commit is contained in:
parent
7f63000d01
commit
258380a4b4
1 changed files with 5 additions and 2 deletions
7
.github/workflows/pytest.yml
vendored
7
.github/workflows/pytest.yml
vendored
|
|
@ -19,7 +19,10 @@ jobs:
|
|||
sudo apt install xvfb
|
||||
python -m pip install --upgrade pip
|
||||
pip install .
|
||||
pip install pytest
|
||||
pip install -r requirements/dev.txt
|
||||
- name: Run Unittests with pytest
|
||||
run: |
|
||||
xvfb-run pytest -v -s .
|
||||
xvfb-run coverage run --source=beeref -m pytest -v -s
|
||||
- name: Upload Coverage report to Codecov
|
||||
uses: codecov/codecov-action@v1
|
||||
with:
|
||||
Loading…
Reference in a new issue