2019-05-20 18:19:42 -07:00
|
|
|
#!/bin/sh
|
2019-05-20 17:30:07 -07:00
|
|
|
|
|
|
|
# This script is intended to be run from the continuous integration build
|
|
|
|
# server, and not on a developer machine. For that, see:
|
|
|
|
# https://torsion.org/borgmatic/docs/how-to/develop-on-borgmatic/
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-10-31 20:37:01 -07:00
|
|
|
python -m pip install --upgrade pip==19.3.1
|
2019-10-21 11:05:37 -07:00
|
|
|
pip install tox==3.14.0
|
2019-05-20 17:30:07 -07:00
|
|
|
tox
|
|
|
|
apk add --no-cache borgbackup
|
|
|
|
tox -e end-to-end
|