我從這裏安裝pytest的插件:http://pypi.python.org/pypi/pytest-cov。然後,我有一個簡單的測試代碼:pytest和覆蓋組合不起作用
pytest.py:
class TestNumbers:
def test_int_float(self):
assert 1 == 1.0
def test_int_str(self):
assert 1 == 1
我試着用命令來測試它: 'py.test --cov,報告期內,公司--cov pytest.py'。但它不起作用。即使我給出pytest.py的絕對路徑,它仍然沒有收集數據。但是,如果我使用py.test pytest.py,它肯定會測試好的。
我很困惑這個問題,感謝您的幫助。
使用前綴爲「test_」的文件名,但無論如何不要使用「pytest.py」,它會影響實際的「pytest」模塊。 – hpk42