Skip to content
Snippets Groups Projects
Commit 1dd7dc50d8be authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:loud_sound: docker_pylint: display pylint version

parent 772aa7733749
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,11 @@
History
=======
21.8.0 (Unreleased)
-------------------
docker_pylint: Display pylint version.
21.7.3 (2024-04-30)
-------------------
......
......@@ -130,8 +130,12 @@
config.local_image,
config.local_tag,
{
"entrypoint": "pylint",
"command": [f"--output-format={output_format}", *modules],
"entrypoint": "zsh",
"command": [
"-c",
f"pylint --version && pylint --output-format={output_format} "
f"{' '.join(modules)}",
],
# needed to write in the cache
"user": "root",
"mounts": mounts,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment