X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/d9a1088a3c1c6131fbd1bd5ea2a2dc10e2427eb2..382f6a2636a2d6630796bcfb03757df4f11bd3c3:/tests/lib/test-setup.sh diff --git a/tests/lib/test-setup.sh b/tests/lib/test-setup.sh index 4ccc8d9..86c23a2 100644 --- a/tests/lib/test-setup.sh +++ b/tests/lib/test-setup.sh @@ -1,5 +1,20 @@ set -e +export BACKOFF_MAX_TIME=0 + +export GIT_AUTHOR_NAME=automation +export GIT_COMMITTER_NAME=automation +export GIT_AUTHOR_EMAIL=auto@mati.on +export GIT_COMMITTER_EMAIL=auto@mati.on + +cache_dir=$(mktemp -d) +export XDG_CACHE_HOME=$cache_dir + +nix_store=$(mktemp -d) +nix_state=$(mktemp -d) +export NIX_STORE_DIR=$nix_store +export NIX_STATE_DIR=$nix_state + foo_setup() { repo_dir="`mktemp -d`" @@ -15,6 +30,7 @@ foo_setup() { conf="`mktemp`" cat > "$conf" <