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
3 changes: 2 additions & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uv run black --check .

- name: Run tests with coverage
run: uv run pytest --cov=rmagent --cov-report=term-missing --cov-fail-under=80
run: uv run pytest --cov=rmagent --cov-report=term-missing --cov-report=xml --cov-fail-under=80
env:
# Set test environment variables
RM_DATABASE_PATH: data/Iiams.rmtree
Expand All @@ -46,4 +46,5 @@ jobs:
if: always()
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: false
Loading