diff --git a/src/sinol_make/commands/run/__init__.py b/src/sinol_make/commands/run/__init__.py index 928cdaaa..0b3c94c0 100644 --- a/src/sinol_make/commands/run/__init__.py +++ b/src/sinol_make/commands/run/__init__.py @@ -7,7 +7,6 @@ import time import psutil import glob -import tempfile import shutil from io import StringIO from typing import Dict @@ -340,7 +339,7 @@ def get_possible_score(self, groups): def get_output_file(self, test_path): - return os.path.abspath(os.path.join("out", os.path.split(os.path.splitext(test_path)[0])[1]) + ".out") + return os.path.join("out", os.path.split(os.path.splitext(test_path)[0])[1]) + ".out" def get_groups(self, tests):