Move coverage config to .coveragerc 31/29031/7
authorYujun Zhang <zhang.yujunz@zte.com.cn>
Sat, 18 Feb 2017 17:45:32 +0000 (01:45 +0800)
committerYujun Zhang <zhang.yujunz@zte.com.cn>
Tue, 21 Feb 2017 08:45:35 +0000 (16:45 +0800)
.coveragerc will be used by tox, pytest, PyCharm and etc

Change-Id: I1f128231cda5f3ebffff9e99b1de9134c78fcc00
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
.coveragerc [new file with mode: 0644]
tox.ini

diff --git a/.coveragerc b/.coveragerc
new file mode 100644 (file)
index 0000000..dfaeae6
--- /dev/null
@@ -0,0 +1,27 @@
+# .coveragerc to control coverage.py
+
+[run]
+branch = True
+source =
+    qtip
+
+[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
+
diff --git a/tox.ini b/tox.ini
index 1a90dfa..40ecbbf 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -16,7 +16,7 @@ deps =
 commands=
   py.test \
     --basetemp={envtmpdir} \
-    --cov qtip --cov-report term-missing --cov-report html \
+    --cov \
     {posargs}
 setenv=
   HOME = {envtmpdir}