Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add playwright-python to workspace tags #105104

Merged
merged 2 commits into from Sep 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -62,7 +62,7 @@ const ModulesToLookFor = [
'firebase',
'@google-cloud/common',
'heroku-cli',
//Office and Sharepoint packages
// Office and Sharepoint packages
'@microsoft/teams-js',
'@microsoft/office-js',
'@microsoft/office-js-helpers',
Expand Down Expand Up @@ -118,7 +118,8 @@ const PyModulesToLookFor = [
'pydocumentdb',
'botbuilder-core',
'botbuilder-schema',
'botframework-connector'
'botframework-connector',
'playwright'
];

export class WorkspaceTagsService implements IWorkspaceTagsService {
Expand Down Expand Up @@ -292,7 +293,8 @@ export class WorkspaceTagsService implements IWorkspaceTagsService {
"workspace.py.pydocumentdb" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
"workspace.py.botbuilder-core" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
"workspace.py.botbuilder-schema" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
"workspace.py.botframework-connector" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true }
"workspace.py.botframework-connector" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true },
"workspace.py.playwright" : { "classification": "SystemMetaData", "purpose": "FeatureInsight", "isMeasurement": true }
}
*/
private resolveWorkspaceTags(configuration: IEnvironmentConfiguration, participant?: (rootFiles: string[]) => void): Promise<Tags> {
Expand Down