-
Notifications
You must be signed in to change notification settings - Fork 133
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
Code coverage reporting #1126
Code coverage reporting #1126
Conversation
Each version of what? Python? Parsons? |
Ah, sorry. Each version of Python and each testing platform. |
Yeah, feels like we should only have to run it once. It's not like the coverage would differ on those versions/platforms. |
cache: pip | ||
- name: Install uv | ||
run: | | ||
pip install uv |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium
Click Remediation section below to solve this issue
@@ -63,7 +63,7 @@ | |||
cache: pip | |||
- name: Install uv | |||
run: | | |||
pip install -U pip uv | |||
pip install uv |
Check warning
Code scanning / Scorecard
Pinned-Dependencies Medium test
Click Remediation section below to solve this issue
.github/workflows/coverage.yml
Outdated
cache: pip | ||
- name: Install uv | ||
run: | | ||
pip install uv==0.4.6 |
Check warning
Code scanning / Scorecard
Pinned-Dependencies
.github/workflows/test.yml
Outdated
@@ -63,7 +63,7 @@ | |||
cache: pip | |||
- name: Install uv | |||
run: | | |||
pip install -U pip uv | |||
pip install uv==0.4.6 |
Check warning
Code scanning / Scorecard
Pinned-Dependencies
Do we care about the |
Prompted by #1114 I created coverage testing.
The main thing about this that I don't like is that it reports on each version which is probably pointless? Does anyone know if that is worth doing or not?