Masood Malekghassemi | d00241e | 2015-12-03 16:42:36 -0800 | [diff] [blame^] | 1 | # Tox (http://tox.testrun.org/) is a tool for running tests |
| 2 | # in multiple virtualenvs. This configuration file will run the |
| 3 | # test suite on all supported python versions. To use it, "pip install tox" |
| 4 | # and then run "tox" from this directory. |
| 5 | |
| 6 | [tox] |
| 7 | skipsdist = true |
| 8 | envlist = py27 |
| 9 | |
| 10 | [testenv] |
| 11 | commands = |
| 12 | {envpython} setup.py build_py |
| 13 | {envpython} setup.py test |
| 14 | coverage combine |
| 15 | coverage report --include='grpc/*' --omit='grpc/framework/alpha/*','grpc/early_adopter/*','grpc/framework/base/*','grpc/framework/face/*' |
| 16 | deps = |
| 17 | cython |
| 18 | coverage |
| 19 | oauth2client |
| 20 | protobuf |
| 21 | passenv = * |