Better messaging around skipping for is_wiki_eligible reasons. #117
Workflow file for this run
This file contains 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: Pytest | |
on: [push, pull_request] | |
jobs: | |
uv: | |
name: python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a | |
with: | |
version: "0.5.3" | |
- name: Set up Python | |
run: uv python install | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Run tests | |
run: uv run coverage run -m pytest tests | |
- name: Generate coverage | |
run: uv run coverage xml | |