Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
a86bc595
Commit
a86bc595
authored
9 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LCS/Messaging/python/messaging/test/t_RPC.run
+25
-1
25 additions, 1 deletion
LCS/Messaging/python/messaging/test/t_RPC.run
LCS/Messaging/python/messaging/test/t_messagebus.run
+26
-1
26 additions, 1 deletion
LCS/Messaging/python/messaging/test/t_messagebus.run
with
51 additions
and
2 deletions
LCS/Messaging/python/messaging/test/t_RPC.run
+
25
−
1
View file @
a86bc595
...
...
@@ -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]
\n
exclude_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
This diff is collapsed.
Click to expand it.
LCS/Messaging/python/messaging/test/t_messagebus.run
+
26
−
1
View file @
a86bc595
...
...
@@ -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]
\n
exclude_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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment