看哪,我的 setup.py:
https://github.com/mongodb/motor/blob/master/setup.py
...和setup.cfg:
https://github.com/mongodb/motor/blob/master/setup.cfg
我希望能够运行一个套件,例如:
python setup.py nosetests test.test_motor_ssl
但我得到“无效的命令名称'test.test_motor_ssl'”。另一方面,有了这个:
python setup.py nosetests --tests test.test_motor_ssl
...鼻子测试运行我项目中的每个测试。我如何告诉鼻子测试,当它在 setup.py 中运行时,如何运行测试子集?