2019-05-21 02:19:42 +01:00
|
|
|
#!/bin/sh
|
2019-05-21 01:30:07 +01: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-11-01 03:37:01 +00:00
|
|
|
python -m pip install --upgrade pip==19.3.1
|
2019-10-21 19:05:37 +01:00
|
|
|
pip install tox==3.14.0
|
2019-05-21 01:30:07 +01:00
|
|
|
tox
|
2019-12-11 00:52:59 +00:00
|
|
|
apk add --no-cache borgbackup postgresql-client
|
2019-05-21 01:30:07 +01:00
|
|
|
tox -e end-to-end
|