Skip to content

feat: fix playlist limit, add folder sync option, and refactor client #47

feat: fix playlist limit, add folder sync option, and refactor client

feat: fix playlist limit, add folder sync option, and refactor client #47

Workflow file for this run

name: Backend Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest httpx pytest-asyncio
- name: Run tests
env:
AUTH_USERNAME: test
AUTH_PASSWORD: test
PYTHONPATH: ${{ github.workspace }}/backend
run: |
pytest tests/