-
-
Notifications
You must be signed in to change notification settings - Fork 83
38 lines (29 loc) · 1.05 KB
/
run-tests.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
name: run-tests
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
# Configured following guide at:
# https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry" # caching dependencies from poetry.lock
- name: Install Poetry dependencies (CPU)
run: poetry install -E cpu
- name: Run unit tests with coverage
run: poetry run pytest tests/unit --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# - name: Run pytest integration tests
# run: poetry run pytest tests/integration
# - name: Run pytest end-to-end tests
# run: poetry run pytest tests/end_to_end