pytest不运行任何测试

17 浏览
0 Comments

pytest不运行任何测试

pytest不运行任何测试,原因不清楚。我尝试使用--debug,但没有获得任何有价值的信息。对于如何调试pytest的这种问题完全不清楚。(看起来可能与pytest的配置/环境变量/测试名称模式有关)?

测试文件示例:

import pytest
@pytest.mark.sanity
def test_me():
    """我是一个测试。"""
    assert True

但是pytest不运行任何测试,为什么?

$ pytest
================================================== test session starts ===================================================
platform linux2 -- Python 2.7.12, pytest-3.1.3, py-1.4.34, pluggy-0.4.0
rootdir: /home/qawizard/pytest-hell, inifile:
plugins: xdist-1.15.0, timeout-1.2.0
collected 1 item s
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Exit: Done! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
============================================== no tests ran in 0.13 seconds ==============================================

0