如何使 nosetests 使用点分语法?
How to make nosetests use dotted syntax?
有没有办法让nosetests打印出来:
ERROR: product.test.lib.test_csv_tools:CSVToolsTest.test_missing_header_csv
而不是:
ERROR: test_missing_header_csv (product.test.lib.test_csv_tools.CSVToolsTest)
然后我可以轻松地复制它和 运行 失败的单个测试。会很方便。
我认为你应该看看 for a specific nose plugin that provides this kind of output. For example, the nose_runnable_test_names
听起来很接近你要问的内容。
有没有办法让nosetests打印出来:
ERROR: product.test.lib.test_csv_tools:CSVToolsTest.test_missing_header_csv
而不是:
ERROR: test_missing_header_csv (product.test.lib.test_csv_tools.CSVToolsTest)
然后我可以轻松地复制它和 运行 失败的单个测试。会很方便。
我认为你应该看看 for a specific nose plugin that provides this kind of output. For example, the nose_runnable_test_names
听起来很接近你要问的内容。