Skip to content
Snippets Groups Projects
Commit a86bc595 authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #8571: added coverage measuring and reporting to python test runs

parent 176ecee6
No related branches found
No related tags found
No related merge requests found
......@@ -10,5 +10,29 @@ queue=$(< /dev/urandom tr -dc [:alnum:] | head -c16)
qpid-config add exchange topic $queue
# Run the unit test
python t_RPC.py $queue
# either with or without code coverage measurements,
# depending wheter coverage has been installed
if type "coverage" > /dev/null; then
#run test using python coverage tool
#erase previous results
coverage erase
#setup coverage config file
printf "[report]\nexclude_lines = \n if __name__ == .__main__.\n def main\n" > .coveragerc
coverage run --branch --include=*Messaging/python* t_RPC.py $queue
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo " *** Code coverage results *** "
coverage report -m
echo " *** End coverage results *** "
fi
exit $RESULT
else
#coverage not available
echo "Please run: 'pip install coverage' to enable code coverage reporting of the unit tests"
#run plain test script
python t_RPC.py $queue
fi
......@@ -10,4 +10,29 @@ queue=$(< /dev/urandom tr -dc [:alnum:] | head -c16)
qpid-config add queue $queue
# Run the unit test
python t_messagebus.py $queue
# either with or without code coverage measurements,
# depending wheter coverage has been installed
if type "coverage" > /dev/null; then
#run test using python coverage tool
#erase previous results
coverage erase
#setup coverage config file
printf "[report]\nexclude_lines = \n if __name__ == .__main__.\n def main\n" > .coveragerc
coverage run --branch --include=*Messaging/python* t_messagebus.py $queue
RESULT=$?
if [ $RESULT -eq 0 ]; then
echo " *** Code coverage results *** "
coverage report -m
echo " *** End coverage results *** "
fi
exit $RESULT
else
#coverage not available
echo "Please run: 'pip install coverage' to enable code coverage reporting of the unit tests"
#run plain test script
python t_messagebus.py $queue
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment