Skip to content

Commit

Permalink
Remove --log-cli-level INFO when calling pytest (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinebrl authored Jan 27, 2025
1 parent 8d2b337 commit 1bd91d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changelog/_unreleased.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ id = "00ded573-ed92-4aab-b480-e21589718bbd"
type = "fix"
description = "Remove used of deprecated flag to be removed in pip 25.1"
author = "[email protected]"

[[entries]]
id = "c34f7131-4e5d-482f-b654-bd08976c59fc"
type = "fix"
description = "Remove --log-cli-level INFO when calling pytest. This option can be added back by the users via their configuration files."
author = "[email protected]"
1 change: 0 additions & 1 deletion kraken-build/src/kraken/std/python/tasks/pytest_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def get_execute_command_v2(self, env: MutableMapping[str, str]) -> list[str] | T
*[str(self.project.directory / path) for path in self.include_dirs.get()],
]
command += flatten(["--ignore", str(self.project.directory / path)] for path in self.ignore_dirs.get())
command += ["--log-cli-level", "INFO"]
if self.coverage.is_filled():
coverage_file = f"coverage{self.coverage.get().get_suffix()}"
command += [
Expand Down

0 comments on commit 1bd91d2

Please sign in to comment.