Skip to content

Commit 363e579

Browse files
committed
update default glob to **/*.py
1 parent bdd9205 commit 363e579

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@
658658
"type": "boolean"
659659
},
660660
"python.testing.autoTestDiscoverOnSavePattern": {
661-
"default": "**.py",
661+
"default": "**/*.py",
662662
"description": "%python.testing.autoTestDiscoverOnSavePattern.description%",
663663
"scope": "resource",
664664
"type": "string"

src/client/common/configSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ export class PythonSettings implements IPythonSettings {
320320
unittestEnabled: false,
321321
pytestPath: 'pytest',
322322
autoTestDiscoverOnSaveEnabled: true,
323-
autoTestDiscoverOnSavePattern: '**.py',
323+
autoTestDiscoverOnSavePattern: '**/*.py',
324324
} as ITestingSettings;
325325
}
326326
}

0 commit comments

Comments
 (0)