标签: 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}}中的测试。
test_dir
如何实现这一目标?
谢谢!
答案 0 :(得分:2)
nose-exclude引入了--exclude-dir选项:
nose-exclude
--exclude-dir
nosetests --exclude-dir="basic tests/"