mirror of https://github.com/pulumi/pulumi.git
15 lines
386 B
Bash
Executable File
15 lines
386 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
PULUMI_TEST_COVERAGE_PATH=$PULUMI_TEST_COVERAGE_PATH
|
|
|
|
set -euo pipefail
|
|
|
|
coverage run -m pytest lib/test/automation
|
|
|
|
if [[ "$PULUMI_TEST_COVERAGE_PATH" ]]; then
|
|
if [ -e .coverage ]; then
|
|
UUID=$(python -c "import uuid; print(str(uuid.uuid4()).replace('-', '').lower())")
|
|
coverage xml -o $PULUMI_TEST_COVERAGE_PATH/python-auto-$UUID.xml
|
|
fi
|
|
fi
|