Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fortitude_linter/fortitude_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def launch_fortitude(

for top_dir_path in source_path.iterdir():
# e.g. applications,science,interfaces
if not top_dir_path.is_dir(): # don't try to loop over files
# don't try to loop over files or hidden directories
if not top_dir_path.is_dir() or str(top_dir_path.name).startswith("."):
continue
for app_path in top_dir_path.iterdir():
# e.g. adjoint_tests, adjoint, coupled_interface
Expand Down
Loading