Files
cleveragents-core/robot/repo_indexing_cli.robot
freemo b122ec7ed5
CI / lint (pull_request) Successful in 23s
CI / quality (pull_request) Successful in 51s
CI / typecheck (pull_request) Successful in 1m0s
CI / security (pull_request) Successful in 55s
CI / build (pull_request) Successful in 25s
CI / helm (pull_request) Successful in 32s
CI / push-validation (pull_request) Successful in 26s
CI / e2e_tests (pull_request) Successful in 3m38s
CI / integration_tests (pull_request) Successful in 6m42s
CI / unit_tests (pull_request) Successful in 8m19s
CI / docker (pull_request) Successful in 13s
CI / coverage (pull_request) Successful in 15m23s
CI / status-check (pull_request) Successful in 2s
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-14 14:50:55 +00:00

46 lines
2.1 KiB
Plaintext

*** Settings ***
Documentation Repository Indexing CLI Integration Tests
Library Process
Library OperatingSystem
*** Variables ***
${HELPER} ${CURDIR}/helper_repo_indexing_cli.py
*** Test Cases ***
E2E Add Resource Index And Check Status
[Documentation] End-to-end: add resource, index it, check status
${result}= Run Process ${PYTHON} ${HELPER} e2e
... on_timeout=kill timeout=60s
Should Be Equal As Integers ${result.rc} 0 E2E test failed: ${result.stderr}
Should Contain ${result.stdout} E2E add-index-status PASSED
Incremental Reindex After File Change
[Documentation] Incremental re-index detects new files
${result}= Run Process ${PYTHON} ${HELPER} incremental
... on_timeout=kill timeout=60s
Should Be Equal As Integers ${result.rc} 0 Incremental test failed: ${result.stderr}
Should Contain ${result.stdout} Incremental reindex PASSED
Full Reindex Replaces Entire Index
[Documentation] Full re-index replaces the entire index
${result}= Run Process ${PYTHON} ${HELPER} full
... on_timeout=kill timeout=60s
Should Be Equal As Integers ${result.rc} 0 Full reindex test failed: ${result.stderr}
Should Contain ${result.stdout} Full reindex PASSED
Status Returns None When No Index Exists
[Documentation] Status check with no index returns None
${result}= Run Process ${PYTHON} ${HELPER} no-index
... on_timeout=kill timeout=60s
Should Be Equal As Integers ${result.rc} 0 Status no-index test failed: ${result.stderr}
Should Contain ${result.stdout} Status no-index PASSED
Remove Index Cleans Up All Data
[Documentation] Removing an index cleans up all data
${result}= Run Process ${PYTHON} ${HELPER} remove
... on_timeout=kill timeout=60s
Should Be Equal As Integers ${result.rc} 0 Remove index test failed: ${result.stderr}
Should Contain ${result.stdout} Remove index PASSED
*** Keywords ***