From d0540fc0199d436a5359d0a0c18a7bc7114a4cb7 Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Thu, 21 Mar 2024 14:46:57 +0100 Subject: [PATCH] Cleanup --- src/sinol_make/commands/run/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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):