From c3d18ddb044a21f580774565edfb32b6fab37114 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 25 Nov 2015 15:48:22 +0100 Subject: [PATCH] add environment variable SKIP_INTEGRATION_TESTS --- test/run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/run.sh b/test/run.sh index 93ac3073d554b..80156c958a360 100755 --- a/test/run.sh +++ b/test/run.sh @@ -19,4 +19,6 @@ else fi # Integration Tests -./scripts/code.sh $ROOT/extensions/vscode-api-tests/testWorkspace --extensionDevelopmentPath=$ROOT/extensions/vscode-api-tests --extensionTestsPath=$ROOT/extensions/vscode-api-tests/out \ No newline at end of file +if [[ "$SKIP_INTEGRATION_TESTS" == "" ]]; then + ./scripts/code.sh $ROOT/extensions/vscode-api-tests/testWorkspace --extensionDevelopmentPath=$ROOT/extensions/vscode-api-tests --extensionTestsPath=$ROOT/extensions/vscode-api-tests/out +fi \ No newline at end of file