PyTest不会运行任何测试

时间:2017-07-20 09:05:20

标签: python pytest

PyTest没有运行任何测试,也不清楚为什么。我试图使用--debug但没有得到任何有价值的信息。完全不清楚如何用pytest调试这类问题(看起来像PyTest配置/ env变量/测试名称模式有些问题?)

测试文件示例:

$ cat test_sanity.py 
import pytest


@pytest.mark.sanity
def test_me():
    """ I'm a test. """

    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 ==============================================

为什么这样?

1 个答案:

答案 0 :(得分:5)

要确定为什么未运行测试,这些步骤很有用:

  1. 验证所有带有测试用例的文件均以'test_'词开头。
  2. 验证所有测试用例名称也都以“ test_”一词开头。
  3. 确认您已在根目录中创建pytest.ini文件
  4. 验证项目的所有目录/子目录中都有__init__.py文件