Skip to content

Commit cd76ee1

Browse files
authored
add pythonTestAdapter to experiment enum (#21357)
allow people to opt in and out of the pythonTestAdapter rewrite via the settings `python.experiment.optInto` or `python.experiment.optOutfrom`
1 parent dbd0b73 commit cd76ee1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -462,13 +462,15 @@
462462
"All",
463463
"pythonSurveyNotification",
464464
"pythonPromptNewToolsExt",
465-
"pythonTerminalEnvVarActivation"
465+
"pythonTerminalEnvVarActivation",
466+
"pythonTestAdapter"
466467
],
467468
"enumDescriptions": [
468469
"%python.experiments.All.description%",
469470
"%python.experiments.pythonSurveyNotification.description%",
470471
"%python.experiments.pythonPromptNewToolsExt.description%",
471-
"%python.experiments.pythonTerminalEnvVarActivation.description%"
472+
"%python.experiments.pythonTerminalEnvVarActivation.description%",
473+
"%python.experiments.pythonTestAdapter.description%"
472474
]
473475
},
474476
"scope": "machine",
@@ -483,13 +485,15 @@
483485
"All",
484486
"pythonSurveyNotification",
485487
"pythonPromptNewToolsExt",
486-
"pythonTerminalEnvVarActivation"
488+
"pythonTerminalEnvVarActivation",
489+
"pythonTestAdapter"
487490
],
488491
"enumDescriptions": [
489492
"%python.experiments.All.description%",
490493
"%python.experiments.pythonSurveyNotification.description%",
491494
"%python.experiments.pythonPromptNewToolsExt.description%",
492-
"%python.experiments.pythonTerminalEnvVarActivation.description%"
495+
"%python.experiments.pythonTerminalEnvVarActivation.description%",
496+
"%python.experiments.pythonTestAdapter.description%"
493497
]
494498
},
495499
"scope": "machine",

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"python.experiments.pythonSurveyNotification.description": "Denotes the Python Survey Notification experiment.",
4444
"python.experiments.pythonPromptNewToolsExt.description": "Denotes the Python Prompt New Tools Extension experiment.",
4545
"python.experiments.pythonTerminalEnvVarActivation.description": "Enables use of environment variables to activate terminals instead of sending activation commands.",
46+
"python.experiments.pythonTestAdapter.description": "Denotes the Python Test Adapter experiment.",
4647
"python.formatting.autopep8Args.description": "Arguments passed in. Each argument is a separate item in the array.",
4748
"python.formatting.autopep8Path.description": "Path to autopep8, you can use a custom version of autopep8 by modifying this setting to include the full path.",
4849
"python.formatting.blackArgs.description": "Arguments passed in. Each argument is a separate item in the array.",

0 commit comments

Comments
 (0)