mirror of
https://github.com/zebrajr/ansible.git
synced 2026-01-15 12:15:19 +00:00
Scripts previously under `test/utils/shippable/` are now under `.azure-pipelines/commands/` instead.
15 lines
393 B
Bash
Executable File
15 lines
393 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Temporary script to support side-by-side testing for incidental code coverage.
|
|
# Once collection migration has been completed the incidental tests can be combined with the regular tests.
|
|
|
|
set -o pipefail -eux
|
|
|
|
declare -a args
|
|
IFS='/:' read -ra args <<< "$1"
|
|
|
|
script="${args[1]}"
|
|
|
|
IFS='/' test="${args[*]:1}"
|
|
|
|
".azure-pipelines/commands/incidental/${script}.sh" "${test}"
|