-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (49 loc) · 1.25 KB
/
coverage.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Code Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout tarp
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Record State
run: |
pwd
echo github.ref is: ${{ github.ref }}
echo GITHUB_SHA is: $GITHUB_SHA
echo github.event_name is: ${{ github.event_name }}
echo github workspace: ${{ github.workspace }}
pip --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install -r requirements.txt
shell: bash
- name: Install tarp
run: |
pip install -e .
pip show tarp
shell: bash
- name: Test with pytest
run: |
pytest --cov-report=xml --cov=src/tarp tests/
cat coverage.xml
shell: bash
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/coverage.xml
# fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}