We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdd9205 commit 363e579Copy full SHA for 363e579
package.json
@@ -658,7 +658,7 @@
658
"type": "boolean"
659
},
660
"python.testing.autoTestDiscoverOnSavePattern": {
661
- "default": "**.py",
+ "default": "**/*.py",
662
"description": "%python.testing.autoTestDiscoverOnSavePattern.description%",
663
"scope": "resource",
664
"type": "string"
src/client/common/configSettings.ts
@@ -320,7 +320,7 @@ export class PythonSettings implements IPythonSettings {
320
unittestEnabled: false,
321
pytestPath: 'pytest',
322
autoTestDiscoverOnSaveEnabled: true,
323
- autoTestDiscoverOnSavePattern: '**.py',
+ autoTestDiscoverOnSavePattern: '**/*.py',
324
} as ITestingSettings;
325
}
326
0 commit comments