Skip to content

changed to test only 3.8 for now #4

changed to test only 3.8 for now

changed to test only 3.8 for now #4

Workflow file for this run

name: Python Tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run pytest with coverage and generate report
run: poetry run pytest --cov=app --cov-report=term-missing:skip-covered tests/ | tee pytest-coverage.txt
- name: Upload pytest coverage report as artifact
uses: actions/upload-artifact@v4
with:
name: pytest-coverage-report
path: pytest-coverage.txt
- name: Pytest coverage comment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt