There is a test pipeline with one step
with the following script
script:
- bash pipeline_scripts/config_databases.sh
- bash run_test1.sh &
- bash run_test2.sh &
- wait
The wait
is on purpose of waiting for the run_test1.sh
and run_test2.sh
in the background to complete. But it does not wait as expected, how to resolve this?