Compare commits

..

No commits in common. "3b99ebdea9660215122cdd27f6af39b21bfb0d7a" and "4141eeb30cb52b75cca6e75ffe6ecb97081fe9d0" have entirely different histories.

View File

@ -141,10 +141,10 @@ AIDER_TEST = bash_cmd(
)
RUFF_FORMAT_AND_AUTO_FIX = bash_cmd(
'ruff format --silent',
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
'ruff format --silent',
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
'ruff format',
'ruff check --fix --ignore RUF022 --ignore PGH004',
'ruff format',
'ruff check --fix --ignore RUF022 --ignore PGH004',
)
AIDER_LINT = bash_cmd(
@ -177,8 +177,7 @@ 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'}:
@ -202,7 +201,7 @@ def create_aider_command(issue: str) -> list[str]:
l.append('--model')
l.append(CODE_MODEL)
if CODE_MODEL.startswith('ollama/') and False:
if CODE_MODEL.startswith('ollama/'):
l.append('--auto-lint')
if True:
@ -637,7 +636,5 @@ 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,
)