summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-coverage/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-test-coverage/runme.sh')
-rwxr-xr-xtest/integration/targets/ansible-test-coverage/runme.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-test-coverage/runme.sh b/test/integration/targets/ansible-test-coverage/runme.sh
new file mode 100755
index 0000000..de5a4eb
--- /dev/null
+++ b/test/integration/targets/ansible-test-coverage/runme.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env bash
+
+source ../collection/setup.sh
+
+set -x
+
+# common args for all tests
+common=(--venv --color --truncate 0 "${@}")
+
+# run a lightweight test that generates code coverge output
+ansible-test sanity --test import "${common[@]}" --coverage
+
+# report on code coverage in all supported formats
+ansible-test coverage report "${common[@]}"
+ansible-test coverage html "${common[@]}"
+ansible-test coverage xml "${common[@]}"