Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/precommit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,13 @@ jobs:
else
python3 -u scripts/release_check.py
fi

# Informational only: list test-list entries whose parametrize IDs cannot
# be verified statically (runtime-computed argvalues/ids), grouped by
# reason, so they can be swept without rerunning the analysis locally. The
# pre-commit step above remains the gate for actual validation errors;
# this step never fails the job.
- name: Report unverifiable test-list param IDs
if: always()
continue-on-error: true
run: python3 -u scripts/check_test_list.py --validate --report-unverifiable
4 changes: 3 additions & 1 deletion jenkins/L0_Test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3818,7 +3818,9 @@ def launchTestListCheck(pipeline)
def llmPath = sh (script: "realpath .", returnStdout: true).trim()
def llmSrc = "${llmPath}/TensorRT-LLM/src"
trtllm_utils.llmExecStepWithRetry(pipeline, script: "pip3 install -r ${llmSrc}/requirements-dev.txt")
sh "NVIDIA_TRITON_SERVER_VERSION=26.05 LLM_ROOT=${llmSrc} LLM_BACKEND_ROOT=${llmSrc}/triton_backend python3 ${llmSrc}/scripts/check_test_list.py --l0 --qa --waive"
// --validate --parity: after --l0/--qa generate the collectable lists, assert every
// statically-verified parametrize ID is actually collectable (validate<->collection parity).
sh "NVIDIA_TRITON_SERVER_VERSION=26.05 LLM_ROOT=${llmSrc} LLM_BACKEND_ROOT=${llmSrc}/triton_backend python3 ${llmSrc}/scripts/check_test_list.py --l0 --qa --waive --validate --parity"
} catch (InterruptedException e) {
throw e
} catch (Exception e) {
Expand Down
Loading
Loading