refactor(automation): remove automation_level legacy fields

This commit is contained in:
2026-02-20 07:08:13 +00:00
parent 81162bfe91
commit 174e117d8e
69 changed files with 451 additions and 809 deletions
+23
View File
@@ -0,0 +1,23 @@
*** Settings ***
Documentation Integration tests verifying automation_level removal
Library Process
Library OperatingSystem
*** Variables ***
${PYTHON} python
*** Test Cases ***
Plan Use Rejects Automation Level Flag
[Documentation] Verify plan use --automation-level is no longer accepted
${result}= Run Process ${PYTHON} -m cleveragents plan use --automation-level manual local/test
... stderr=STDOUT
Should Not Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} No such option
Plan Commands Work With Profile Only Flow
[Documentation] Verify plan lifecycle works with automation_profile only
${result}= Run Process ${PYTHON} -c
... from cleveragents.domain.models.core.plan import Plan; print('automation_profile only')
... stderr=STDOUT
Should Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} automation_profile only