Compare commits

...

4 Commits

Author SHA1 Message Date
3b99ebdea9 Silent ruff runs initially
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-05-11 10:45:14 +02:00
71c3a85e05 🤖 Repository layout updated to latest version
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-05-11 10:43:45 +02:00
56c70f6322 Ruff 2025-05-11 10:43:31 +02:00
32cdcde883 Messing around 2025-05-11 10:43:23 +02:00

View File

@ -141,10 +141,10 @@ AIDER_TEST = bash_cmd(
)
RUFF_FORMAT_AND_AUTO_FIX = bash_cmd(
'ruff format',
'ruff check --fix --ignore RUF022 --ignore PGH004',
'ruff format',
'ruff check --fix --ignore RUF022 --ignore PGH004',
'ruff format --silent',
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
'ruff format --silent',
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
)
AIDER_LINT = bash_cmd(
@ -177,7 +177,8 @@ def create_aider_command(issue: str) -> list[str]:
'--auto-test',
'--no-auto-lint',
'--yes',
'--timeout', str(10_000)
'--timeout',
str(10_000),
]
if CODE_MODEL in {'ollama/qwen3:32b'}:
@ -201,7 +202,7 @@ def create_aider_command(issue: str) -> list[str]:
l.append('--model')
l.append(CODE_MODEL)
if CODE_MODEL.startswith('ollama/'):
if CODE_MODEL.startswith('ollama/') and False:
l.append('--auto-lint')
if True:
@ -636,5 +637,7 @@ def handle_failing_pipelines(
check=False,
)
run_cmd(
['git', 'push', 'origin', branch_name], repository_path, check=False,
['git', 'push', 'origin', branch_name],
repository_path,
check=False,
)