Compare commits
4 Commits
4141eeb30c
...
3b99ebdea9
Author | SHA1 | Date | |
---|---|---|---|
3b99ebdea9 | |||
71c3a85e05 | |||
56c70f6322 | |||
32cdcde883 |
|
@ -141,10 +141,10 @@ AIDER_TEST = bash_cmd(
|
||||||
)
|
)
|
||||||
|
|
||||||
RUFF_FORMAT_AND_AUTO_FIX = bash_cmd(
|
RUFF_FORMAT_AND_AUTO_FIX = bash_cmd(
|
||||||
'ruff format',
|
'ruff format --silent',
|
||||||
'ruff check --fix --ignore RUF022 --ignore PGH004',
|
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
|
||||||
'ruff format',
|
'ruff format --silent',
|
||||||
'ruff check --fix --ignore RUF022 --ignore PGH004',
|
'ruff check --fix --ignore RUF022 --ignore PGH004 --silent',
|
||||||
)
|
)
|
||||||
|
|
||||||
AIDER_LINT = bash_cmd(
|
AIDER_LINT = bash_cmd(
|
||||||
|
@ -177,7 +177,8 @@ def create_aider_command(issue: str) -> list[str]:
|
||||||
'--auto-test',
|
'--auto-test',
|
||||||
'--no-auto-lint',
|
'--no-auto-lint',
|
||||||
'--yes',
|
'--yes',
|
||||||
'--timeout', str(10_000)
|
'--timeout',
|
||||||
|
str(10_000),
|
||||||
]
|
]
|
||||||
|
|
||||||
if CODE_MODEL in {'ollama/qwen3:32b'}:
|
if CODE_MODEL in {'ollama/qwen3:32b'}:
|
||||||
|
@ -201,7 +202,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/'):
|
if CODE_MODEL.startswith('ollama/') and False:
|
||||||
l.append('--auto-lint')
|
l.append('--auto-lint')
|
||||||
|
|
||||||
if True:
|
if True:
|
||||||
|
@ -636,5 +637,7 @@ def handle_failing_pipelines(
|
||||||
check=False,
|
check=False,
|
||||||
)
|
)
|
||||||
run_cmd(
|
run_cmd(
|
||||||
['git', 'push', 'origin', branch_name], repository_path, check=False,
|
['git', 'push', 'origin', branch_name],
|
||||||
|
repository_path,
|
||||||
|
check=False,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user