Skip to content

Commit

Permalink
More fixes in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed May 22, 2024
1 parent 63e0507 commit f533bc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 $HOME/.cargo $HOME/.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 $HOME/.cargo $HOME/.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"
Expand Down

0 comments on commit f533bc0

Please sign in to comment.