X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/4af9966c73666ed77a7a4c0dc498bfba1e853070..3501ba8a2d15e354d6b200ccd50efd7e6dd9c360:/tests/lib/test-setup.sh diff --git a/tests/lib/test-setup.sh b/tests/lib/test-setup.sh index 66d13eb..e4260f4 100644 --- a/tests/lib/test-setup.sh +++ b/tests/lib/test-setup.sh @@ -1,12 +1,16 @@ 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) +data_dir=$(mktemp -d) export XDG_CACHE_HOME=$cache_dir +export XDG_DATA_HOME=$data_dir nix_store=$(mktemp -d) nix_state=$(mktemp -d) @@ -17,7 +21,7 @@ foo_setup() { repo_dir="`mktemp -d`" repo="$repo_dir/repo" - git init "$repo" + git -c init.defaultBranch=master init "$repo" ( cd "$repo" echo Contents > test-file @@ -28,6 +32,7 @@ foo_setup() { conf="`mktemp`" cat > "$conf" <