Skip to content

Commit

Permalink
Remove test directory filter from lint:security target
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Nov 19, 2024
1 parent 21a7b2a commit 037bffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exasol/toolbox/nox/_lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def type_check(session: Session) -> None:
def security_lint(session: Session) -> None:
"""Runs the security linter on the project"""
py_files = [f"{file}" for file in python_files(PROJECT_CONFIG.root)]
_security_lint(session, list(filter(lambda file: "test" not in file, py_files)))
_security_lint(session, py_files)


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

0 comments on commit 037bffb

Please sign in to comment.