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-07-15 07:36:02 +08:00
parent 89d8f73703
commit 78079c3f2b

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