From 44eb880108729993df207d1bf9c67afe134fa436 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Mon, 15 Apr 2013 15:59:40 -0500 Subject: [PATCH] added test coverage link --- README.markdown | 2 ++ VERSION | 2 +- gluon/tests/.coveragerc | 28 ---------------------------- 3 files changed, 3 insertions(+), 29 deletions(-) delete mode 100644 gluon/tests/.coveragerc diff --git a/README.markdown b/README.markdown index 11729895..a9c8abab 100644 --- a/README.markdown +++ b/README.markdown @@ -11,6 +11,8 @@ Learn more at http://web2py.com [![Build Status](https://travis-ci.org/web2py/web2py.png)](https://travis-ci.org/web2py/web2py) +[![Coverage Status](https://coveralls.io/repos/web2py/web2py/badge.png)](https://coveralls.io/r/web2py/web2py) + ## Installation Instructions To start web2py there is NO NEED to install it. Just unzip and do: diff --git a/VERSION b/VERSION index faf1ce61..6d492717 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.4.6-stable+timestamp.2013.04.15.10.15.42 +Version 2.4.6-stable+timestamp.2013.04.15.15.58.57 diff --git a/gluon/tests/.coveragerc b/gluon/tests/.coveragerc deleted file mode 100644 index 18f82564..00000000 --- a/gluon/tests/.coveragerc +++ /dev/null @@ -1,28 +0,0 @@ -[run] -branch = True -parallel = True -source = gluon, applications - -[report] -# Regexes for lines to exclude from consideration -exclude_lines = - # Have to re-enable the standard pragma - pragma: no cover - - # Don't complain about missing debug-only code: - def __repr__ - if self\.debug - - # Don't complain if tests don't hit defensive assertion code: - raise AssertionError - raise NotImplementedError - - # Don't complain if non-runnable code isn't run: - if 0: - if __name__ == .__main__.: - -ignore_errors = True -omit = gluon/contrib/* - -[html] -directory = coverage_html_report