Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .github/workflows/ci_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: astral-sh/setup-uv@v1
- name: Install dependencies
run: |
uv sync
uv sync --extra dev
- name: Ensure Proto Files changes are committed
run: |
uv run python scripts/generate_proto.py
Expand All @@ -34,3 +34,23 @@ jobs:
- name: Run Ruff linter
run: |
uv tool run ruff check

test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Set up uv
uses: astral-sh/setup-uv@v1
- name: Install dependencies
run: |
uv sync --extra dev
- name: Run unit tests
run: |
uv run python -m pytest tests/ -v
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
"asyncio: marks tests as async tests",
]

[tool.coverage.run]
Expand Down