This commit is contained in:
Egor Matveev 2022-02-07 22:26:30 +03:00
parent 9e0b9b67e7
commit cbd4c7987f

View File

@ -8,7 +8,7 @@ class Python3Tester(BaseTester):
def before_test(self): def before_test(self):
for file in listdir(self.solution.testing_directory): for file in listdir(self.solution.testing_directory):
if file.endswith(".py"): if file.endswith(".py") and file != 'checker.py':
self.file = file self.file = file
break break
if self.file is None: if self.file is None: