diff --git a/js/.vscode/launch.json b/js/.vscode/launch.json index 4d9b6f3062..3f4ec74b7d 100644 --- a/js/.vscode/launch.json +++ b/js/.vscode/launch.json @@ -6,21 +6,12 @@ "configurations": [ { "name": "[common] Launch Unit Tests", - "args": [ - "-u", - "bdd", - "--timeout", - "999999", - "--colors", - "${workspaceFolder}/common/test/**/*.js" - ], + "args": ["-u", "bdd", "--timeout", "999999", "--colors", "${workspaceFolder}/common/test/**/*.js"], "internalConsoleOptions": "openOnSessionStart", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "cwd": "${workspaceFolder}/common", "request": "launch", - "skipFiles": [ - "/**" - ], + "skipFiles": ["/**"], "type": "node", "sourceMaps": true, "preLaunchTask": "tsc: build - common/test/tsconfig.json" @@ -29,14 +20,10 @@ "name": "[web] Launch Test Runner", "program": "${workspaceFolder}/web/script/test-runner-cli.js", "request": "launch", - "skipFiles": [ - "/**" - ], + "skipFiles": ["/**"], "type": "node", "cwd": "${workspaceFolder}/web", - "args": [ - "suite1" - ] + "args": ["suite1"] }, { "name": "[web] Attach to Chrome", diff --git a/tools/ci_build/github/azure-pipelines/templates/mac-cpu-packing-jobs.yml b/tools/ci_build/github/azure-pipelines/templates/mac-cpu-packing-jobs.yml index 4cd039b0dc..a40a3ad57b 100644 --- a/tools/ci_build/github/azure-pipelines/templates/mac-cpu-packing-jobs.yml +++ b/tools/ci_build/github/azure-pipelines/templates/mac-cpu-packing-jobs.yml @@ -46,9 +46,9 @@ jobs: - task: UsePythonVersion@0 # Use python 3.8 to avoid build some of the required packages - displayName: Use Python 3.8 + displayName: Use Python 3.11 inputs: - versionSpec: 3.8 + versionSpec: 3.11 - task: NodeTool@0 inputs: versionSpec: '16.x'