Skip to content

Commit

Permalink
Update _prepare_outputs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Mar 24, 2024
1 parent f7c820e commit 5650f43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/_prepare_outputs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import glob
import os
import subprocess
import sys

from _common import normalize_output

Expand All @@ -10,7 +9,7 @@
output = f"test/output/{name}.xml"
try:
run = subprocess.run(
[sys.executable, "-m", "tap2junit", "-i", file, "-o", output],
["python", "-m", "tap2junit", "-i", file, "-o", output],
shell=False,
)
run.check_returncode()
Expand Down

0 comments on commit 5650f43

Please sign in to comment.