-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert changes to fix IPyWidget tests (#14431)
* Revert "Update version of node inline with pipelines (#14410)" This reverts commit 6e034ab. * Revert "Use esbuild for just one test script (#14411)" This reverts commit cb8910f. * Revert "Remove unwanted files (#14416)" This reverts commit bb016df. * Revert "Updates to npm packages to address npm audi issues (#14418)" This reverts commit 93e7789.
- Loading branch information
1 parent
11de1dc
commit 6945152
Showing
32 changed files
with
1,715 additions
and
1,673 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16.17.1 | ||
v16.14.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. | ||
|
||
#Adds the virtual environment's executable path to json file | ||
|
||
import json,sys | ||
import os.path | ||
jsonPath = sys.argv[1] | ||
key = sys.argv[2] | ||
|
||
if os.path.isfile(jsonPath): | ||
with open(jsonPath, 'r') as read_file: | ||
data = json.load(read_file) | ||
else: | ||
directory = os.path.dirname(jsonPath) | ||
if not os.path.exists(directory): | ||
os.makedirs(directory) | ||
with open(jsonPath, 'w+') as read_file: | ||
data = {} | ||
data = {} | ||
with open(jsonPath, 'w') as outfile: | ||
if key == 'condaExecPath': | ||
data[key] = sys.argv[3] | ||
else: | ||
data[key] = sys.executable | ||
json.dump(data, outfile, sort_keys=True, indent=4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
steps: | ||
- task: ComponentGovernanceComponentDetection@0 | ||
inputs: | ||
scanType: 'Register' | ||
verbosity: 'Verbose' | ||
alertWarningLevel: 'High' |
13 changes: 13 additions & 0 deletions
13
build/ci/static_analysis/credscan/CredScanSuppressions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"tool": "Credential Scanner", | ||
"suppressions": [ | ||
{ | ||
"file": "src\\test\\datascience\\serverConfigFiles\\jkey.key", | ||
"_justification": "Key file used for testing purposes, it is not a key relating to anything real" | ||
}, | ||
{ | ||
"file": "src\\test\\datascience\\serverConfigFiles\\remotePassword.py", | ||
"_justification": "The secret in this file used here for testing." | ||
} | ||
] | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
Oops, something went wrong.