There was an error while loading. Please reload this page.
1 parent 7941168 commit b2f2091Copy full SHA for b2f2091
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
@@ -1216,11 +1216,11 @@
1216
},
1217
"python.testing.unittestArgs": {
1218
"default": [
1219
- "*test*.py",
1220
- "-p",
1221
- "-s",
1222
"-v",
1223
- "."
+ "-s",
+ ".",
+ "-p",
+ "*test*.py"
1224
],
1225
"description": "Arguments passed in. Each argument is a separate item in the array.",
1226
"items": {
0 commit comments