Skip to content

Commit 4ab47b9

Browse files
authored
Update lint.py
1 parent 7778c51 commit 4ab47b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def StartTests(command):
2525
for dirs, node, files in os.walk(project_directory):
2626
for file in files:
2727
if re.search(pattern_filename, file) != None:
28-
if re.search(r'(task_1)|(task_2)|(task_3)|(test_task)', dirs) != None:
28+
if re.search(r'(task_1)|(task_2)|(task_3)|(task_4)|(test_task)', dirs) != None:
2929
os.chdir(dirs)
3030
print(dirs + " -> " + file)
3131
command = sys.executable + ' ' + cpplint_path + ' --linelength=120 ' + file

0 commit comments

Comments
 (0)