Files
ma/nextflow/tests/agent-output-error.nf
2026-04-29 23:01:54 +02:00

21 lines
350 B
Plaintext

#!/usr/bin/env nextflow
workflow {
FAIL()
}
/*
* Test for agent output mode error handling (NXF_AGENT_MODE=true)
*
* This test verifies the error output format in agent mode.
* Run with: NXF_AGENT_MODE=true nextflow run agent-output-error.nf
*/
process FAIL {
script:
"""
echo "Error message here" >&2
exit 127
"""
}