Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Nov 19, 2024
1 parent 1ece350 commit 6783236
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tests/make_test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import os
import subprocess
import sys
from pathlib import Path
from typing import Any

Expand All @@ -23,8 +24,8 @@ def get_makefile_envs():
)

if result.returncode != 0:
logger.error("ERROR: Failed to load environment variables from Makefile.envs")
exit_with_stdio(result)
print("ERROR: Failed to load environment variables from Makefile.envs")
sys.exit(1)

environment = {}
for line in result.stdout.splitlines():
Expand Down

0 comments on commit 6783236

Please sign in to comment.