Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
- name: Install dependencies
run: |
apt-get update
apt-get install -qy --no-install-recommends libsqlite3-0 tzdata
apt-get install -qy --no-install-recommends \
libsqlite3-0 python3-cffi-backend tzdata
uv tool install tox --with tox-gh-actions --with tox-uv

- name: Run tests with tox
Expand Down
2 changes: 1 addition & 1 deletion contrib/manual-zfssync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ _recv() {
echo "warning: We have newer snapshots ($newer_snapshots) after" \
"$remote${commonsnap:-@(void)}, adding recv -F" >&2
else
echo "warning: We have never snapshots ($newer_snapshots) after" \
echo "warning: We have newer snapshots ($newer_snapshots) after" \
"$remote${commonsnap:-@(void)}, expect failure" >&2
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion contrib/planb-double-backup-sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __iter__(self):

def get_server_datasets(server):
return check_output(
['ssh', server, 'planb', 'blist', '--double'],
['ssh', server, '-oLogLevel=error', 'planb', 'blist', '--double'],
text=True).splitlines()


Expand Down
Loading