Tibor Digana
Tibor Digana
@stephenc Is there another alternative for the Maven to generate these links of changes in site automatically? For instance based on label in a pull request or an issue.
Instead we should try generate changes.xml by the plugin: ``` maven-changes-plugin 2.11 Type,Priority,Key,Summary,Resolution true Fixed type DESC,Priority DESC,Key 1000 true github-report ```
This is the result http://junit.czweb.org/site/github-report.html You can see the issues without label `4.12` because you did not mark them. For instance this one was fixed in 4.12 but it wasn't...
I mean milestone, but look at #461 in the list, it does not have any milestone specified. Therefore I have configured the plugin in order to see all issues with...
I don't agree that hand-editing report is nowadays cool process in whatever s/w development. The PRs might be outdated but commit numbers won't be. So you can extend the list...
@cowwoc Without going inside the Jira report, can you tell us briefly why should I run my concurrent test method in a unique CL ?
@cowwoc Did you write a snapshot code without any framework in order to prove the concept? Would i be like this ? - instanciate test class T in main Thread...
@raf84 i think we cannot use byte code weaving
@cowwoc suppose A has t1 and t2 methods. Do you want T1 to run only t1, and T2 run only t2 ? if yes, then junit does not have the...
@cowwoc the junit does not support this concept of multiple class objects and multiple class loaders. We can run classes/methods in parallel, but not like this. I am afraid you...