Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: py-cov-action/python-coverage-comment-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.20
Choose a base ref
...
head repository: py-cov-action/python-coverage-comment-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.21
Choose a head ref
  • 7 commits
  • 5 files changed
  • 3 contributors

Commits on Jan 11, 2024

  1. Workaround pipx bug

    ewjoachim committed Jan 11, 2024
    Copy the full SHA
    a22c091 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2eab6cd View commit details
  3. Update Deps with minor upgrades (#344)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 11, 2024
    Copy the full SHA
    1009bab View commit details

Commits on Jan 12, 2024

  1. Update Deps with minor upgrades to v0.1.13 (#346)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jan 12, 2024
    Copy the full SHA
    270783f View commit details

Commits on Jan 17, 2024

  1. Update subprocess.py

    ewjoachim authored Jan 17, 2024
    Copy the full SHA
    09e3b44 View commit details
  2. Copy the full SHA
    661a924 View commit details
  3. Copy the full SHA
    cf213fa View commit details
Showing with 28 additions and 24 deletions.
  1. +2 −1 .github/workflows/ci.yml
  2. +2 −1 .github/workflows/e2e-external-phase-2.yml
  3. +1 −1 .pre-commit-config.yaml
  4. +2 −0 coverage_comment/subprocess.py
  5. +21 −21 poetry.lock
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -25,8 +25,9 @@ jobs:
python-version: "3.11"

- name: Install Poetry
# https://github.com/pypa/pipx/issues/1195
run: |
pipx install poetry --python=python3.11
pipx install poetry --python="$(command -v python3.11)"
- name: Poetry caches
uses: actions/cache@v3
3 changes: 2 additions & 1 deletion .github/workflows/e2e-external-phase-2.yml
Original file line number Diff line number Diff line change
@@ -94,8 +94,9 @@ jobs:
python-version: "3.11"

- name: Install Poetry
# https://github.com/pypa/pipx/issues/1195
run: |
pipx install poetry --python=python3.11
pipx install poetry --python="$(command -v python3.11)"
- name: Poetry caches
uses: actions/cache@v3
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ repos:
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.11
rev: v0.1.13
hooks:
- id: ruff
args: [ --fix ]
2 changes: 2 additions & 0 deletions coverage_comment/subprocess.py
Original file line number Diff line number Diff line change
@@ -23,6 +23,8 @@ def run(*args, path: pathlib.Path, **kwargs) -> str:
args,
cwd=path,
text=True,
# Only relates to DecodeErrors while decoding the output
errors="replace",
check=True,
capture_output=True,
**kwargs,
42 changes: 21 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.