File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 77## 🔧 Changed
88
99* Updated gh-pages workflow to use the new multiversion nox task target
10+
11+ ## 🐞 Fixed
12+
13+ * Removed the ` test ` file filter from ` lint:security `
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ def type_check(session: Session) -> None:
148148def 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 )
Original file line number Diff line number Diff line change @@ -43,14 +43,14 @@ def _integration_tests(
4343) -> None :
4444 pm = NoxTasks .plugin_manager (config )
4545
46- # run pre intergration test plugins
46+ # run pre integration test plugins
4747 pm .hook .pre_integration_tests_hook (session = session , config = config , context = {})
4848
4949 # run
5050 command = _test_command (config .root / "test" / "integration" , config , context )
5151 session .run (* command )
5252
53- # run post intergration test plugins
53+ # run post integration test plugins
5454 pm .hook .post_integration_tests_hook (session = session , config = config , context = {})
5555
5656
You can’t perform that action at this time.
0 commit comments