SRobertJames
SRobertJames

Reputation: 9253

ScalaTest: Printing out tag name when running test

I added some custom tags to ScalaTest. When I run the tests, how do I tell ScalaTest to print the tag name next to the test?

Upvotes: 3

Views: 413

Answers (1)

Bill Venners
Bill Venners

Reputation: 3669

There is no out-of-the-box way to do that. You could override ScalaTest's lifecycle methods to do it, but I'm not sure that's worth it. I'm curious what your goal is. This is probably better discussed on scalatest-users. If you have time please post on the scalatest-users Google group.

Upvotes: 1

Related Questions