summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-19 00:25:16 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2019-01-19 00:38:00 +0000
commit6b8a648f6f302e6165ebcbf2c38dc0fe258c567f (patch)
tree471cb51092d40ddaa0b0c41d0381b9de0334ad8a /ci
parent423d3e738ae4c9ff5fb6f72da5e0ca19adaf67a6 (diff)
downloadlibgit2-6b8a648f6f302e6165ebcbf2c38dc0fe258c567f.tar.gz
ci: clear settings variables in powershell
Diffstat (limited to 'ci')
-rw-r--r--ci/test.ps15
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/test.ps1 b/ci/test.ps1
index 107de6f5a..82ac0fa32 100644
--- a/ci/test.ps1
+++ b/ci/test.ps1
@@ -59,6 +59,7 @@ if (-not $Env:SKIP_INVASIVE_TESTS) {
$Env:GITTEST_INVASIVE_FS_SIZE=1
run_test invasive
+ $Env:GITTEST_INVASIVE_FS_SIZE=$null
}
if (-not $Env:SKIP_ONLINE_TESTS) {
@@ -81,6 +82,10 @@ if (-not $Env:SKIP_PROXY_TESTS) {
run_test proxy
+ $Env:GITTEST_REMOTE_PROXY_HOST=$null
+ $Env:GITTEST_REMOTE_PROXY_USER=$null
+ $Env:GITTEST_REMOTE_PROXY_PASS=$null
+
taskkill /F /IM javaw.exe
}