Skip to content

Commit cc9324f

Browse files
committed
make test_standalone a bit less noisy
(cherry picked from commit 9e27c6c)
1 parent ad3f98b commit cc9324f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_standalone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
MVN_CMD = [shutil.which('mvn')]
4949

5050
def run_cmd(cmd, env, cwd=None):
51-
print(f"Executing:\n {cmd=}\n {env=}\n {cwd=}")
51+
print(f"Executing:\n {cmd=}\n")
5252
process = subprocess.Popen(cmd, env=env, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True, text=True, errors='backslashreplace')
5353
out = []
5454
for line in iter(process.stdout.readline, ""):

0 commit comments

Comments
 (0)