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