Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Aug 13, 2024
1 parent 7838a37 commit 768d329
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Install dependencies
run: |
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install --yes --no-install-recommends \
build-essential python3-virtualenv python3-dev enchant file apache2-dev jq
build-essential python3-virtualenv python3-dev enchant file apache2-dev jq libarchive-tools
virtualenv .venv
# TODO: this should be one step, but there are too many conflicting dependencies
./.venv/bin/pip install -r securedrop/requirements/python3/test-requirements.txt
Expand Down
2 changes: 2 additions & 0 deletions devops/scripts/verify-mo.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ def verify(self) -> None:
# or 1 (differences); anything else is an error.
test = self.diffoscope_call(Path(self.mo.fpath), Path(self.mo_target), filtered=False)
if test.returncode not in [0, 1]:
print(test.stdout.decode())
print(test.stderr.decode())
test.check_returncode()

# With filtering, since diffoscope will return 1 on differences
Expand Down

0 comments on commit 768d329

Please sign in to comment.