Skip to content

Commit b2f2091

Browse files
Fix order of default unittest arguments (#16880)
* Fix order of default unittest arguments * Add news entry
1 parent 7941168 commit b2f2091

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
@@ -1216,11 +1216,11 @@
12161216
},
12171217
"python.testing.unittestArgs": {
12181218
"default": [
1219-
"*test*.py",
1220-
"-p",
1221-
"-s",
12221219
"-v",
1223-
"."
1220+
"-s",
1221+
".",
1222+
"-p",
1223+
"*test*.py"
12241224
],
12251225
"description": "Arguments passed in. Each argument is a separate item in the array.",
12261226
"items": {

0 commit comments

Comments
 (0)