Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upload coverage report from main directly #125

Merged
merged 3 commits into from
Nov 6, 2024
Merged
Changes from 2 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
9 changes: 7 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: test

on: pull_request
# TODO workaround for Codecov/squash and merge, a bit wasteful
# Revise e.g. via https://github.com/codecov/feedback/issues/369
on:
pull_request:
push:
branches:
- 'main'

jobs:
test:
Expand Down Expand Up @@ -130,7 +136,6 @@ jobs:
run: |
source .venv/bin/activate
pytest --backend ${{ matrix.backend }} --postgres-dsn "postgresql://postgres:postgres@localhost:5432/test" --cov-report xml:.coverage.xml --cov=ixmp4 -rsxX --benchmark-skip --color=yes

#------------------------------
# Upload coverage to codecov
#------------------------------
Expand Down
Loading