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 29096fe commit 4ad399bCopy full SHA for 4ad399b
stestr/config_file.py
@@ -216,15 +216,27 @@ def get_run_command(
216
"specified in the config file."
217
)
218
if pytest:
219
- command = (
220
- '%s -m pytest --subunit --rootdir="%s" "%s" '
221
- "$LISTOPT $IDOPTION"
222
- % (
223
- python,
224
- top_dir,
225
- test_path,
+ if sys.platform == "win32":
+ command = (
+ '%s -m pytest -s --subunit --rootdir="%s" "%s" '
+ "$LISTOPT $IDOPTION"
+ % (
+ python,
+ top_dir,
226
+ test_path,
227
+ )
228
229
+
230
+ else:
231
232
+ '%s -m pytest --subunit --rootdir="%s" "%s" '
233
234
235
236
237
238
239
- )
240
listopt = "--co"
241
idoption = "--load-list $IDFILE"
242
else:
0 commit comments