Skip to content

Commit 486e488

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7a0ce19 commit 486e488

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

server/autotest_server/testers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def install(testers=_TESTERS):
1010
for tester in testers:
1111
mod = importlib.import_module(f".{tester}.setup", package="autotest_server.testers")
1212
try:
13-
print(f'[AUTOTESTER] calling autotest_server.testers.{tester}.setup.install()')
13+
print(f"[AUTOTESTER] calling autotest_server.testers.{tester}.setup.install()")
1414
mod.install()
1515
except Exception as e:
1616
msg = (

server/autotest_server/testers/haskell/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def create_environment(_settings, _env_dir, default_env_dir):
1818
def install():
1919
try:
2020
path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.system")
21-
print(f'[AUTOTESTER] Running {path}', flush=True)
21+
print(f"[AUTOTESTER] Running {path}", flush=True)
2222
subprocess.run(path, check=True)
2323
except subprocess.CalledProcessError as e:
2424
raise RuntimeError(f"Error executing Haskell requirements.system: {e}")
@@ -39,7 +39,7 @@ def install():
3939
raise RuntimeError(f"Error running {cmd_build}: {e}")
4040
try:
4141
path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "stack_permissions.sh")
42-
print(f'[AUTOTESTER] Running {path}', flush=True)
42+
print(f"[AUTOTESTER] Running {path}", flush=True)
4343
subprocess.run(
4444
path,
4545
check=True,

server/autotest_server/testers/java/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def create_environment(_settings, _env_dir, default_env_dir):
1111
def install():
1212
this_dir = os.path.dirname(os.path.realpath(__file__))
1313
path = os.path.join(this_dir, "requirements.system")
14-
print(f'[AUTOTESTER] Running {path}', flush=True)
14+
print(f"[AUTOTESTER] Running {path}", flush=True)
1515
subprocess.run(path, check=True)
1616
url = (
1717
"https://repo1.maven.org/maven2/org/junit/platform/junit-platform-console-standalone/1.7.0/junit-platform"

server/autotest_server/testers/r/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ def settings():
4040

4141
def install():
4242
path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.system")
43-
print(f'[AUTOTESTER] Running {path}', flush=True)
43+
print(f"[AUTOTESTER] Running {path}", flush=True)
4444
subprocess.run(path, check=True)

server/autotest_server/testers/racket/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ def settings():
1414

1515
def install():
1616
path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "requirements.system")
17-
print(f'[AUTOTESTER] Running {path}', flush=True)
17+
print(f"[AUTOTESTER] Running {path}", flush=True)
1818
subprocess.run(path, check=True)

0 commit comments

Comments
 (0)