From ad5419b5b363104540d0f9f0131502946275042c Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 14 Mar 2019 10:32:09 +0000 Subject: ci: enable SKIP_OFFLINE_TESTS for windows --- ci/test.ps1 | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ci/test.ps1 b/ci/test.ps1 index ad368091a..68b53e269 100644 --- a/ci/test.ps1 +++ b/ci/test.ps1 @@ -49,12 +49,14 @@ if (-not $Env:SKIP_PROXY_TESTS) { javaw -jar poxyproxy.jar --port 8090 --credentials foo:bar --auth-type ntlm --quiet } -Write-Host "" -Write-Host "##############################################################################" -Write-Host "## Running (offline) tests" -Write-Host "##############################################################################" +if (-not $Env:SKIP_OFFLINE_TESTS) { + Write-Host "" + Write-Host "##############################################################################" + Write-Host "## Running (offline) tests" + Write-Host "##############################################################################" -run_test offline + run_test offline +} if ($Env:RUN_INVASIVE_TESTS) { Write-Host "" -- cgit v1.2.1