X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/ba23f9978a3e5f47051ad611a71996b26de4c02e..9eecb073aa16525d4a09c62178f32ba8b7788cc5:/tests/lib/test-setup.sh diff --git a/tests/lib/test-setup.sh b/tests/lib/test-setup.sh index f3eb661..e4260f4 100644 --- a/tests/lib/test-setup.sh +++ b/tests/lib/test-setup.sh @@ -8,7 +8,9 @@ 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) @@ -41,6 +43,7 @@ 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 [ "$data_dir" ];then rm -rf "$data_dir"; fi if [ "$nix_store" ];then rm -rf "$nix_store"; fi if [ "$nix_state" ];then rm -rf "$nix_state"; fi }