如何使用nose忽略特定文件夹中的所有测试?

时间:2015-03-18 13:36:42

标签: python python-2.7 testing nose nosetests

我有很多单元测试以下列方式组织:

test_dir/
  test_important1.py
  test_important2.py
  test_important3.py
  ....
  basic tests/testA1.py
              testA2.py
              ....
              __init__.py

我想在test_dir目录中运行所有测试,不包括<{1}}中的测试。

如何实现这一目标?

谢谢!

1 个答案:

答案 0 :(得分:2)

nose-exclude引入了--exclude-dir选项:

nosetests --exclude-dir="basic tests/"