diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-08-04 15:39:29 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-08-04 16:28:13 -0700 |
commit | 8d19caeb369698264b01d69874878c5574eeb6c9 (patch) | |
tree | ea289a493fd41f0e78d5bdddde824a96ce5b38d5 | |
parent | c061b9b6481f59bd6972dc881ef0fbd8c6dd30ad (diff) | |
download | kafka-python-fixture_auto_ports.tar.gz |
Dont include kafka.vendor in coveragefixture_auto_ports
-rw-r--r-- | .covrc | 3 | ||||
-rw-r--r-- | tox.ini | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -0,0 +1,3 @@ +[run] +omit = + kafka/vendor/* @@ -21,18 +21,18 @@ deps = xxhash py26: unittest2 commands = - py.test {posargs:--pylint --pylint-rcfile=pylint.rc --pylint-error-types=EF --cov=kafka} + py.test {posargs:--pylint --pylint-rcfile=pylint.rc --pylint-error-types=EF --cov=kafka --cov-config=.covrc} setenv = PROJECT_ROOT = {toxinidir} passenv = KAFKA_VERSION [testenv:py26] # pylint doesn't support python2.6 -commands = py.test {posargs:--cov=kafka} +commands = py.test {posargs:--cov=kafka --cov-config=.covrc} [testenv:pypy] # pylint is super slow on pypy... -commands = py.test {posargs:--cov=kafka} +commands = py.test {posargs:--cov=kafka --cov-config=.covrc} [testenv:docs] deps = |