Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Execute workflow files with Replay.
replay run
replay run <workflow.yaml>... [flags]
replay run test.yaml replay run tests/*.yaml replay run auth/login.yaml db/seed.yaml
--concurrency
-c
1
--fail-fast
false
--profile
""
--config
replay.yaml
--debug
-d
--max-call-depth
100
replay run workflow.yaml
# Run all workflows in the tests directory, 4 at a time replay run tests/*.yaml --concurrency 4 # Run 3 specific workflows in parallel replay run auth.yaml catalog.yaml checkout.yaml --concurrency 3
replay run tests/*.yaml --concurrency 4 --fail-fast
# Run against staging replay run smoke-test.yaml --profile staging # Run against production replay run smoke-test.yaml --profile production
replay run workflow.yaml --debug
0