]> git.scottworley.com Git - pinch/blobdiff - tests/lib/test-setup.sh
fallback git-cache 1.2.1 -> 1.3.1
[pinch] / tests / lib / test-setup.sh
index 35a4e7334dbbc52f1a71284e342ee53af061f1cf..86c23a22797f3d1c3ae7a07b032dae60a98175d1 100644 (file)
@@ -1,5 +1,7 @@
 set -e
 
+export BACKOFF_MAX_TIME=0
+
 export GIT_AUTHOR_NAME=automation
 export GIT_COMMITTER_NAME=automation
 export GIT_AUTHOR_EMAIL=auto@mati.on
@@ -8,6 +10,11 @@ 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`"
@@ -23,6 +30,7 @@ foo_setup() {
   conf="`mktemp`"
   cat > "$conf" <<EOF
 [foo]
+type = git
 git_repo = file://$repo
 git_ref = master
 EOF
@@ -33,6 +41,8 @@ test_cleanup() {
   if [ "$repo_dir"  ];then rm -rf "$repo_dir";  fi
   if [ "$conf"      ];then rm     "$conf";      fi
   if [ "$cache_dir" ];then rm -rf "$cache_dir"; fi
+  if [ "$nix_store" ];then rm -rf "$nix_store"; fi
+  if [ "$nix_state" ];then rm -rf "$nix_state"; fi
 }
 
 trap test_cleanup EXIT INT TERM