2019-12-11 16:43:01 -08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script installs test dependencies and runs all tests, including end-to-end tests. It
|
|
|
|
# is designed to run inside a test container, and presumes that other test infrastructure like
|
|
|
|
# databases are already running. Therefore, on a developer machine, you should not run this script
|
|
|
|
# directly. Instead, run scripts/run-full-dev-tests
|
|
|
|
#
|
|
|
|
# For more information, see:
|
|
|
|
# https://torsion.org/borgmatic/docs/how-to/develop-on-borgmatic/
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2022-02-08 12:05:02 -08:00
|
|
|
apk add --no-cache python3 py3-pip borgbackup postgresql-client mariadb-client mongodb-tools \
|
2023-03-04 02:41:14 +05:30
|
|
|
py3-ruamel.yaml py3-ruamel.yaml.clib bash sqlite
|
2020-11-25 17:42:04 -08:00
|
|