是否可以指定使用“python setup.py test”运行哪些测试?

是否可以指定使用“python setup.py test”运行哪些测试?,python,testing,Python,Testing,是否可以指定使用python setup.py test运行哪些测试?例如,我想做这样的事情: python setup.py test my_test_module.MyTestClass.my_test_method 我明白了 python -m unittest tests.my_test_module.MyTestClass.my_test_method

是否可以指定使用
python setup.py test
运行哪些测试?例如,我想做这样的事情:

python setup.py test my_test_module.MyTestClass.my_test_method
我明白了

python -m unittest tests.my_test_module.MyTestClass.my_test_method