Files
rp/.gitea/workflows/test.yml
T
retoor 7abdcbe99f
Tests / test (push) Failing after 7s
maintenance: update project version to 1.36.0
maintenance: update changelog with version 1.35.0 release notes
maintenance: add test job to workflow
2025-11-08 03:21:54 +01:00

29 lines
606 B
YAML

name: Tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests with pytest
run: |
pytest --cov=pr --cov-report=xml --cov-report=term-missing
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false