-
-
Notifications
You must be signed in to change notification settings - Fork 98
33 lines (25 loc) · 929 Bytes
/
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
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 pytest with coverage
run: poetry run pytest --cov=audio_separator --cov-report=term-missing
# - 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