Skip to content

Commit 06fb964

Browse files
kondratyev-nvkarthiknadig
authored andcommitted
Fix order of default unittest arguments (#16880)
* Fix order of default unittest arguments * Add news entry
1 parent 4f20755 commit 06fb964

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

news/2 Fixes/16882.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix the order of default unittest arguments.
2+
(thanks [Nikolay Kondratyev](https://github.com/kondratyev-nv/))

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1338,11 +1338,11 @@
13381338
},
13391339
"python.testing.unittestArgs": {
13401340
"default": [
1341-
"*test*.py",
1342-
"-p",
1343-
"-s",
13441341
"-v",
1345-
"."
1342+
"-s",
1343+
".",
1344+
"-p",
1345+
"*test*.py"
13461346
],
13471347
"description": "Arguments passed in. Each argument is a separate item in the array.",
13481348
"items": {

0 commit comments

Comments
 (0)