summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2022-08-20 16:58:56 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2022-09-16 12:15:07 -0400
commit706778af7e95bbfab0269073cbab92eca97314cc (patch)
treebe2e944db96d36f6600bd320fcd512cd4edfc713
parent71071360e1d4cbf2b615c2f593f8d049606e6122 (diff)
downloadlibgit2-ethomson/ci.tar.gz
ci: don't assume SKIP_ONLINE means SKIP_NTLMethomson/ci
`SKIP_ONLINE` doesn't suggest any other skips, like ssh, and it shouldn't imply that we want to skip the (local) NTLM tests.
-rwxr-xr-xci/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test.sh b/ci/test.sh
index 9e5ff9a3e..91b5dae03 100755
--- a/ci/test.sh
+++ b/ci/test.sh
@@ -117,7 +117,7 @@ if [ -z "$SKIP_PROXY_TESTS" ]; then
PROXY_NTLM_PID=$!
fi
-if [ -z "$SKIP_NTLM_TESTS" -o -z "$SKIP_ONLINE_TESTS" ]; then
+if [ -z "$SKIP_NTLM_TESTS" ]; then
curl --location --silent --show-error https://github.com/ethomson/poxygit/releases/download/v0.5.1/poxygit-0.5.1.jar >poxygit.jar
echo "Starting HTTP server..."