From d5a7b3a21585411bc1ff5d8e788beec1e267b4c8 Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Fri, 12 Nov 2021 00:11:00 +0300 Subject: [PATCH] path --- SprintLib/testers/Python3Tester.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SprintLib/testers/Python3Tester.py b/SprintLib/testers/Python3Tester.py index d90948e..750e3c6 100644 --- a/SprintLib/testers/Python3Tester.py +++ b/SprintLib/testers/Python3Tester.py @@ -1,4 +1,4 @@ -from os import listdir +from os import listdir, getcwd from SprintLib.testers.BaseTester import BaseTester, TestException @@ -7,6 +7,7 @@ class Python3Tester(BaseTester): file = None def before_test(self): + print(getcwd()) for file in listdir(self.solution.testing_directory): if file.endswith(".py"): self.file = file