From 8294f8192b4feef12e372316503af6c170d63c84 Mon Sep 17 00:00:00 2001 From: Peter Donovan Date: Wed, 22 May 2024 16:53:12 -0700 Subject: [PATCH] More fixes in CI --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e7a4b1249..8b5972c6b 100644 --- a/package.json +++ b/package.json @@ -200,8 +200,8 @@ "install": "npm run clean && npm run build && npm run package && npm run deploy", "test": "npm run compile-tests && node ./out/test/test/test_runner.js --dependencies=present", "test-dependencies-outdated": "npm run compile-tests && node ./out/test/test/test_runner.js --dependencies=outdated", - "test-dependencies-missing-basic": "if [ -z ${LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS+x} ]; then echo 'If you are sure that you want to run a test which may uninstall binaries from your machine, set the environment variable LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS' ; else npm run compile-tests && rustup self uninstall -y && node ./out/test/test/test_runner.js --dependencies=missing0; fi", - "test-dependencies-missing-extended": "if [ -z ${LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS+x} ]; then echo 'If you are sure that you want to run a test which may uninstall binaries from your machine, set the environment variable LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS' ; else npm run compile-tests && rustup self uninstall -y && node ./out/test/test/test_runner.js --dependencies=missing1; fi", + "test-dependencies-missing-basic": "if [ -z ${LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS+x} ]; then echo 'If you are sure that you want to run a test which may uninstall binaries from your machine, set the environment variable LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS' ; else npm run compile-tests && mv $(which cargo)/../../.cargo $(which cargo)/../../.cargo.bak && node ./out/test/test/test_runner.js --dependencies=missing0; fi", + "test-dependencies-missing-extended": "if [ -z ${LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS+x} ]; then echo 'If you are sure that you want to run a test which may uninstall binaries from your machine, set the environment variable LF_VS_CODE_ALLOW_GLOBAL_UNINSTALLS' ; else npm run compile-tests && mv $(which cargo)/../../.cargo $(which cargo)/../../.cargo.bak && node ./out/test/test/test_runner.js --dependencies=missing1; fi", "test-syntax": "npm run compile-tests && npx mocha out/test/test/check_highlighting.test.js --ui tdd --reporter-option maxDiffSize=0", "update-known-good": "rm -rf test/known-good && npm run compile-tests && npx mocha out/test/test/check_highlighting.test.js --ui tdd", "amend-jar": "./uf.py"