summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xci/build.sh3
-rwxr-xr-xci/clean.sh3
2 files changed, 4 insertions, 2 deletions
diff --git a/ci/build.sh b/ci/build.sh
index 12e0f9d1..1bd96d53 100755
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -160,8 +160,7 @@ if [ "$PYTHON_TESTS" == "TRUE" ]; then
percent=$(coverage3 report --include '*lib/python/*' -m | grep TOTAL | tr -s ' ' | awk '{ print $4 }' | cut -d % -f 1)
if [[ percent -lt 80 ]]; then
echo "Python Coverage: $percent"
- echo "Does not meet 80% requirement"
- exit 1
+ echo "WARNING: Does not meet 80% requirement"
fi
popd
fi
diff --git a/ci/clean.sh b/ci/clean.sh
index b898fc9c..b7f10582 100755
--- a/ci/clean.sh
+++ b/ci/clean.sh
@@ -66,4 +66,7 @@ sed -i '/virtual-power-key/d' /root/.ssh/authorized_keys
# force storage cleanup
virsh pool-refresh default
+# remove temporary files
+rm -f /tmp/network-environment.yaml
+
echo "Cleanup Completed"