在setup.py pytest.main中使用py.test --cov

Kob*_*i K 4 python pytest test-coverage

我正在开发一些测试包.

与CMD合作:

py.test --cov my_pkg
Run Code Online (Sandbox Code Playgroud)

我用covarage得到了结果:

--------------- coverage: platform win32, python 2.7.9-final-0 ----------------
Name                            Stmts   Miss  Cover
---------------------------------------------------
my_pkg\__init__       8      0   100%
my_pkg\general        2      0   100%
---------------------------------------------------
TOTAL                              10      0   100%
Run Code Online (Sandbox Code Playgroud)

失败:

当试图将其集成到内部pytest.main()并运行时:

python setup.py test

以下内容:

============================= test session starts =============================
platform win32 -- Python 2.7.9 -- py-1.4.26 -- pytest-2.7.0
rootdir: C:\Users\kobi.kalif\Projects\automation_utilities, inifile:
plugins: cov, xdist

ERROR: file not found: --cov my_pkg
Run Code Online (Sandbox Code Playgroud)

相关守则:

class PyTest(test_command):
    """class py.test for the testing

    """
    user_options = []

    def __init__(self, dist, **kw):
        test_command.__init__(self, dist, **kw)
        self.pytest_args = ["--cov my_pkg"]

.....

    def run_tests(self):
        # import here, cause outside the eggs aren't loaded
        import pytest
        err_no = pytest.main(self.pytest_args)
        sys.exit(err_no)
Run Code Online (Sandbox Code Playgroud)

题:

如何从setup.py文件内部运行覆盖测试pytest.main

jon*_*rpe 10

根据文档,你应该做:

self.pytest_args = ["--cov", "my_pkg"]
Run Code Online (Sandbox Code Playgroud)

要么:

self.pytest_args = "--cov my_pkg"
Run Code Online (Sandbox Code Playgroud)