fixed logfile creation issue

This commit is contained in:
2025-01-04 18:48:20 +01:00
parent 3f74df5355
commit d29cac2130
6 changed files with 41 additions and 14 deletions

View File

@ -61,17 +61,17 @@
in ''
${
if builtins.elem "pytest" dev && !skipCheck
then "pytest src tests"
then "pytest tests"
else ""
}
${
if builtins.elem "mypy" dev && !skipCheck
then "mypy src tests"
then "mypy src"
else ""
}
${
if builtins.elem "pylint" dev && !skipCheck
then "pylint src tests"
then "pylint src"
else ""
}
'';