Files
cleveragents-core/robot/commands.robot
freemo 069b43233c fix(test-infra): remove redundant ${PYTHON} variable definitions from robot files
Remove the local ${PYTHON}    python (and python3) variable definitions from
the *** Variables *** sections of all affected robot files. These local
definitions were overriding the pabot-injected venv Python path passed via
--variable PYTHON:/path/to/venv/python, causing tests to use the system
Python (which lacks required packages like structlog, sqlalchemy, etc.)
instead of the nox venv Python.

The correct ${PYTHON} value is already set by Setup Test Environment in
common.resource via sys.executable, and pabot passes it via --variable.
The local fallback definitions are redundant and harmful in parallel runs.

Audit found 56 robot files with the pattern (more than the 9 originally
identified in the issue). All occurrences have been removed.

ISSUES CLOSED: #1309
2026-04-05 07:42:02 +00:00

21 lines
879 B
Plaintext

*** Settings ***
Documentation Additional integration tests for cleveragents CLI commands
Library Process
Library OperatingSystem
Library String
Resource ${CURDIR}/v2_paths.resource
*** Test Cases ***
Check Context Command Help
[Documentation] Test that context command help is available
${result} = Run Process ${PYTHON} -m cleveragents context --help
Should Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} Context management
Check Actor Run Command Help
[Documentation] Test that actor run command help is available
${result} = Run Process ${PYTHON} -m cleveragents actor run --help
Should Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} Usage:
Should Contain ${result.stdout} actor run