Skip to content

add unit test for pitches #20

add unit test for pitches

add unit test for pitches #20

Workflow file for this run

name: Runs All pytest Unit tests
on:
pull_request:
push:
branches: [main]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r setup/requirements.txt -r setup/development/requirements.txt
- name: Test with pytest
run: |
pytest --cov-report term-missing --cov=api api/src