mholubinka1 / music-library-search

Web app accessed by QR code to search the physical music library in and out of the home. Ambition to extend to recommendation tool.
MIT License
0 stars 0 forks source link

music-library-search

Modifying This Repository

1. Setup

2. Pre-Commit Setup

Code-checking and linting tools are configured to run automatically on every commit to save manual efforts.

3. Unit Testing

This application uses pytest as the unit testing framework with all tests stored in the tests directory.

3.1. Run Tests

Run all tests with poetry run pytest tests

To run tests and generate a coverage report: poetry run pytest tests --cov --cov-report=html --cov-branch (replace html with xml to a generate xml report, if preferred).