autopep8での例
インストール
$ pip install pytest
$ pip install pytest-cov
$ pip install pytest-xdist
coverage用の設定ファイル
.coveragerc
[run]
branch = True
omit = '*/site-packages/*'
[report]
include = autopep8.py
実行
$ AUTOPEP8_COVERAGE=1 py.test -n4 --cov-config .coveragerc ¥
--cov-report html --cov-report xml --cov-report term-missing ¥
--cov project test/test_project.py