From 715ff857487f46ad37cf6ca0ceaa031041430be6 Mon Sep 17 00:00:00 2001 From: Adam Ward Date: Fri, 13 Dec 2024 12:16:47 -0500 Subject: [PATCH] Allow reading plist --- docker/sandbox.sb | 1 + docker/test-macos.sh | 10 ++-------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/docker/sandbox.sb b/docker/sandbox.sb index 91b37eb2..2092a48c 100644 --- a/docker/sandbox.sb +++ b/docker/sandbox.sb @@ -21,6 +21,7 @@ (path "/") (path "/private/etc/ssl/openssl.cnf") (path "/Library/Preferences/com.apple.dt.Xcode.plist") + (path "/Library/Preferences/com.apple.ViewBridge.plist") (path "/dev/dtracehelper") (path "/dev/fd") (path "/dev/null") diff --git a/docker/test-macos.sh b/docker/test-macos.sh index 9fc851f6..1d7e1b6c 100755 --- a/docker/test-macos.sh +++ b/docker/test-macos.sh @@ -75,12 +75,6 @@ npm run lint npm run format npm run package -# Download vscode -mkdir -p .vscode-test -curl -O -L "https://code.visualstudio.com/sha/download?build=stable&os=darwin-universal" -unzip download -d .vscode-test -rm download - -# export npm_config_proxy="$HTTPS_PROXY" +# Need to set proxy to download VS Code export npm_config_https_proxy="$HTTPS_PROXY" -VSCODE_INSTALL="$(pwd)/.vscode-test/Visual Studio Code.app" CI=1 FAST_TEST_RUN=1 npm run coverage -- --coverage-output "$PWD/coverage" \ No newline at end of file +NO_PROXY="*" CI=1 FAST_TEST_RUN=1 npm run coverage -- --coverage-output "$PWD/coverage" \ No newline at end of file