Skip to content

Commit

Permalink
workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer committed Sep 19, 2024
1 parent 45a39ad commit 77a8586
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
logging.debug(path)
try:
SHA = repo.head.object.hexsha[0:10]
except ValueError:
except (ValueError, BrokenPipeError) as ex:
logging.debug("Unknown Problem: %s", ex)
# mounted dir in docker container and owner is not root
SHA = ""

Expand Down

0 comments on commit 77a8586

Please sign in to comment.