Commit c872f116 authored by Jason Madden's avatar Jason Madden

Tweak .coveragerc for coveralls.

Right now the different versions aren't getting combined.

It's not clear if this will work or not.
parent 2116a113
...@@ -9,20 +9,20 @@ parallel = True ...@@ -9,20 +9,20 @@ parallel = True
source = gevent source = gevent
omit = omit =
# This is for <= 2.7.8, which we don't test # This is for <= 2.7.8, which we don't test
src/gevent/_ssl2.py */gevent/_ssl2.py
src/gevent/libev/_corecffi_build.py */gevent/libev/_corecffi_build.py
src/gevent/libuv/_corecffi_build.py */gevent/libuv/_corecffi_build.py
src/gevent/win32util.py */gevent/win32util.py
# having concurrency=greenlet means that the Queue class # having concurrency=greenlet means that the Queue class
# which is used from multiple real threads doesn't # which is used from multiple real threads doesn't
# properly get covered. # properly get covered.
src/gevent/_threading.py */gevent/_threading.py
# local.so sometimes gets included, and it can't be parsed # local.so sometimes gets included, and it can't be parsed
# as source, so it fails the whole process. # as source, so it fails the whole process.
*.so *.so
src/gevent/libev/*.so */gevent/libev/*.so
src/gevent/libuv/*.so */gevent/libuv/*.so
src/gevent/resolver/*.so */gevent/resolver/*.so
[report] [report]
...@@ -47,3 +47,16 @@ omit = ...@@ -47,3 +47,16 @@ omit =
/tmp/test_* /tmp/test_*
# Third-party vendored code # Third-party vendored code
src/gevent/_tblib.py src/gevent/_tblib.py
[paths]
# Attempt to combine source and
# paths from the Travis CI installs so they all
# get collapsed during combining.
source =
src/
*/lib/*/site-packages/
*/pypy*/site-packages/
# Local Variables:
# mode: conf
# End:
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment