junit-hierarchicalcontextrunner
junit-hierarchicalcontextrunner copied to clipboard
Update the runner to implement Filterable
Our custom build environment allows us to select which tests to run by passing a regular expression on the command line. This is implemented via a JUnit Filter. It would be a huge help if your runner implemented Filterable.
Hi Kevin
Thanks for filing this issue. I will have a look on this and provide a new release within the next week.
Best Stefan
Stefan Bechtold
eCard: http://ecard.bechte.de
http://www.bechte.de, http://twitter.com/bechte
Am 31.01.2016 um 00:09 schrieb Kevin Cooney [email protected]:
Our custom build environment allows us to select which tests to run by passing a regular expression on the command line. This is implemented via a JUnit Filter. It would be a huge help if your runner implemented Filterable.
— Reply to this email directly or view it on GitHub.
Update: I found out, that there is no easy way to implement filterable right away. The reason is that the filter needs to be passed down all the way down the hierarchy. That is very unfortunate. I have to rethink about an easy solution.