mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
388 B
Bash
15 lines
388 B
Bash
5 years ago
|
#!/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}"
|
||
|
|
||
|
"test/utils/shippable/incidental/${script}.sh" "${test}"
|