tutuca
tutuca

Reputation: 3670

Coverage support for tornado test runner

I need to get coverage reports for a project I've based in tornado.

But I can't get the configuration for coverage to use the tornado runner instead of the one in the standard library.

Upvotes: 1

Views: 752

Answers (1)

Julian
Julian

Reputation: 3429

Usually it's just

coverage run /the/test/runner options to test runner

sometimes with a --source=thepackage to remove cruft.

What happens when you run that?

Upvotes: 1

Related Questions