This commit is contained in:
Egor Matveev 2022-02-07 21:38:25 +03:00
parent 45debc48e5
commit b8ac741f24

View File

@ -40,7 +40,7 @@ class BaseTester:
result = open(join(self.solution.testing_directory, "output.txt"), "r").read().strip().replace('\r\n', '\n')
print("got result", result)
if exists(join(self.path, "checker.py")):
self.solution.exec_command(f"cp {filename}.a expected.txt")
copyfile(join(self.path, filename + '.a'), join(self.path, 'expected.txt'))
call(f"docker run --name solution_{self.solution.id}_checker --volume=/sprint-data/solutions/{self.solution.id}:/app -t -d python:3.6", shell=True)
code = call(f'docker exec -i solution_{self.solution.id}_checker sh -c "cd app && python checker.py"', shell=True, timeout=1)
if code != 0: