Skip to content

fixing test configs #284

fixing test configs

fixing test configs #284

Workflow file for this run

---
name: pytest
"on":
push:
branches:
- main
pull_request:
jobs:
pytest:
permissions:
# Gives the action the necessary permissions for publishing new
# comments in pull requests.
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Running pytest
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
python -m pip install --quiet --no-cache-dir --upgrade uv
uv run pytest
uv run coverage run --source=thin_controller -m pytest
- name: Upload coverage to Coveralls
run: |
uv run coveralls
continue-on-error: true