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 f619294 commit 2d8271dCopy full SHA for 2d8271d
scripts/pylib/twister/twisterlib/harness.py
@@ -3,6 +3,7 @@
3
import re
4
import os
5
import subprocess
6
+import shlex
7
from collections import OrderedDict
8
import xml.etree.ElementTree as ET
9
import logging
@@ -207,6 +208,9 @@ def pytest_run(self, log_file):
207
208
outs = []
209
errs = []
210
211
+ logger.debug(
212
+ "Running pytest command: %s",
213
+ " ".join(shlex.quote(a) for a in cmd))
214
with subprocess.Popen(cmd,
215
stdout = subprocess.PIPE,
216
stderr = subprocess.PIPE) as proc:
0 commit comments