Skip to content

Commit 037bffb

Browse files
committed
Remove test directory filter from lint:security target
1 parent 21a7b2a commit 037bffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exasol/toolbox/nox/_lint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def type_check(session: Session) -> None:
148148
def security_lint(session: Session) -> None:
149149
"""Runs the security linter on the project"""
150150
py_files = [f"{file}" for file in python_files(PROJECT_CONFIG.root)]
151-
_security_lint(session, list(filter(lambda file: "test" not in file, py_files)))
151+
_security_lint(session, py_files)
152152

153153

154154
@nox.session(name="lint:dependencies", python=False)

0 commit comments

Comments
 (0)