Fix training bugs, improve API, retrain model v3, and expand test coverage #82
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - v* | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| pip install poetry | |
| cd training && poetry install --with dev --no-root | |
| - name: Lint training code | |
| run: cd training && poetry run ruff check . | |
| - name: Lint API code | |
| run: cd training && poetry run ruff check ../api/ | |
| - name: Run training tests | |
| run: cd training && poetry run pytest --cov=training --cov-report term --cov-report lcov:coverage.lcov -vv | |
| - name: Install API dependencies | |
| run: cd training && poetry run pip install flask gunicorn | |
| - name: Run API tests | |
| run: cd training && poetry run pytest ../api/test_api.py -vv |