borgmatic/scripts/run-end-to-end-tests

23 lines
828 B
Plaintext
Raw Normal View History

#!/bin/sh
2023-03-28 18:09:25 +00:00
# This script is for running end-to-end tests on a developer machine. It sets up database containers
# to run tests against, runs the tests, and then tears down the containers.
#
# Run this script from the root directory of the borgmatic source.
#
# For more information, see:
# https://torsion.org/borgmatic/docs/how-to/develop-on-borgmatic/
2024-03-07 05:24:44 +00:00
set -e
USER_PODMAN_SOCKET_PATH=/run/user/$UID/podman/podman.sock
if [ -e "$USER_PODMAN_SOCKET_PATH" ]; then
export DOCKER_HOST="unix://$USER_PODMAN_SOCKET_PATH"
fi
2024-03-06 23:21:45 +00:00
docker-compose --file tests/end-to-end/docker-compose.yaml --progress quiet up --force-recreate \
2024-03-06 23:29:56 +00:00
--renew-anon-volumes --detach
docker-compose --file tests/end-to-end/docker-compose.yaml --progress quiet attach tests
docker-compose --file tests/end-to-end/docker-compose.yaml --progress quiet down