From cbd4c7987f18dc7b71591d2f89a1e6887dd9baf4 Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Mon, 7 Feb 2022 22:26:30 +0300 Subject: [PATCH] shell --- SprintLib/testers/Python3Tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SprintLib/testers/Python3Tester.py b/SprintLib/testers/Python3Tester.py index 1ca8ada..550db6d 100644 --- a/SprintLib/testers/Python3Tester.py +++ b/SprintLib/testers/Python3Tester.py @@ -8,7 +8,7 @@ class Python3Tester(BaseTester): def before_test(self): for file in listdir(self.solution.testing_directory): - if file.endswith(".py"): + if file.endswith(".py") and file != 'checker.py': self.file = file break if self.file is None: