Skip to content

Commit

Permalink
Add python source build
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicField committed Oct 8, 2024
1 parent b56871b commit e4b55d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def run_test(filename):
raise ValueError(f"filename `{filename}` is not a Python (.py) file")
module = f"ft_utils.tests.{f_head}"
result = subprocess.run(
["python", "-m", module], stdout=subprocess.PIPE, stderr=subprocess.PIPE
[sys.executable, "-m", module], stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
if result.returncode != 0:
print(f"{module} failed:")
Expand Down

0 comments on commit e4b55d4

Please sign in to comment.