Skip to content

Specify if song wasn't found or API error occurred #43

Specify if song wasn't found or API error occurred

Specify if song wasn't found or API error occurred #43

Workflow file for this run

name: Test Python Application
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install test dependencies
run: pip install -r requirements-dev.txt
- name: Install playwright browsers
run: playwright install
- name: Run tests with pytest
run: python -m pytest