Skip to content

Commit

Permalink
v9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 21, 2023
1 parent bb8e39e commit 023542e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**9.2.1** (2023-11-21)
* Fixed crash in GitLab coverage service due to `check=True`

**9.2.0** (2023-11-17)
* Added migration docs to Readme
* Added migration check to GitHub actions
Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets."""

__version__ = "9.2.0"
__version__ = "9.2.1"
5 changes: 3 additions & 2 deletions ambient_toolbox/gitlab/coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ def get_latest_target_branch_commit_sha(self) -> str:
"""
Get the latest commit which is in the current branch and the target compare branch.
"""
result = subprocess.run(
["git", "merge-base", "--fork-point", f"origin/{self.target_branch}"], stdout=subprocess.PIPE, check=True
result = subprocess.run( # noqa: PLW1510
["git", "merge-base", "--fork-point", f"origin/{self.target_branch}"],
stdout=subprocess.PIPE,
)
return result.stdout.decode("utf-8").strip()

Expand Down

0 comments on commit 023542e

Please sign in to comment.