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 4f20755 commit 06fb964Copy full SHA for 06fb964
news/2 Fixes/16882.md
@@ -0,0 +1,2 @@
1
+Fix the order of default unittest arguments.
2
+(thanks [Nikolay Kondratyev](https://github.com/kondratyev-nv/))
package.json
@@ -1338,11 +1338,11 @@
1338
},
1339
"python.testing.unittestArgs": {
1340
"default": [
1341
- "*test*.py",
1342
- "-p",
1343
- "-s",
1344
"-v",
1345
- "."
+ "-s",
+ ".",
+ "-p",
+ "*test*.py"
1346
],
1347
"description": "Arguments passed in. Each argument is a separate item in the array.",
1348
"items": {
0 commit comments