-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.23 KB
/
codecov_tests.yml
File metadata and controls
51 lines (42 loc) · 1.23 KB
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
name: Python Tests & Coverage
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Add path to PYTHONPATH
run: |
echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv sync --dev
- name: Run tests with coverage
run: |
uv run coverage run --source=backpack -m pytest
uv run coverage report -m --fail-under=70
uv run coverage xml
- name: Upload coverage.xml
if: ${{ matrix.python-version == '3.11' }}
uses: actions/upload-artifact@v7
with:
name: upload coverage
path: ${{ github.workspace }}/coverage.xml
if-no-files-found: warn
# upload coverage.xml to codecov
- name: Upload coverage.xml to codecov
if: ${{ matrix.python-version == '3.11' }}
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}