MDL-69273 travis: Move exttests check to after_script

The result of the final command `script` phase determines the build
result.

The cleanup belongs in the `after_script` phase.
This commit is contained in:
Andrew Nicols
2020-08-18 07:40:14 +08:00
parent 89d8f73703
commit 78079c3f2b
+8 -2
View File
@@ -254,8 +254,6 @@ script:
if [ "$TASK" = 'PHPUNIT' ];
then
vendor/bin/phpunit --fail-on-risky --disallow-test-output --verbose;
EXTTESTS_HITS=$(docker logs exttests 2>&1 | grep -Fv -e 'AH00558' -e '[pid 1]' | wc -l)
echo -e "\nTest local resources number of hits: ${EXTTESTS_HITS}.\n"
fi
- >
@@ -292,3 +290,11 @@ script:
exit 1 ;
fi
fi
after_script:
- >
if [ "$TASK" = 'PHPUNIT' ];
then
EXTTESTS_HITS=$(docker logs exttests 2>&1 | grep -Fv -e 'AH00558' -e '[pid 1]' | wc -l)
echo -e "\nTest local resources number of hits: ${EXTTESTS_HITS}.\n"
fi