2

我正在使用基于 django.test.TestCase 的类方法来测试我的 django 应用程序。当我执行测试时,它只显示通过的测试数量。我应该怎么做才能在控制台上获得哪个测试通过和哪个失败的输出,就像 Proboscis 框架的输出一样。 http://packages.python.org/proboscis/

这会产生这样的输出..

$ python run_tests.py

test_should_return_false_for_positive_numbers (tests.examples.unit.tests.unit.TestIsNegative) ... ok
test_should_return_false_for_zero (tests.examples.unit.tests.unit.TestIsNegative) ... ok
test_should_return_true_for_negative_numbers (tests.examples.unit.tests.unit.TestIsNegative) ... ok
Make sure our complex string reversal logic works. ... ok

----------------------------------------------------------------------
Ran 4 tests in 0.001s

OK

但是 proboscis 不会捕获基于 django.tests.TestCase 类的测试。请告诉我我现在应该做什么..

4

1 回答 1

2

verbosity使用选项运行测试

python manage.py test --verbosity=2 app1 app2

-v VERBOSITY, --verbosity=VERBOSITY
                    Verbosity level; 0=minimal output, 1=normal output,
                    2=verbose output, 3=very verbose output
于 2013-01-23T09:16:12.823 回答