Krishnan Mahadevan
Krishnan Mahadevan
@DarpanSinghal - Please verify this from a command line as well (using maven and/or gradle) because I would like to confirm if this problem is associated with the eclipse plugin...
Below sample can be used to reproduce the problem Test classes ```java import org.testng.annotations.Test; public class TestClassSampleOne { @Test(groups = {"g1"}, priority = 1) public void t1() { } @Test(groups...
@DarpanSinghal - I spent some more time on this, and to me this looks like TestNG `7.4.0` is actually working fine and we may have ended up fixing a bug...
@juherr The below table should add more context | Pass | Class | Method | Priority | BelongsTo | DependsOn | |:----:|--------------|--------|----------|-----------|-----------| | 1 | OptimusPrime | t1 | 1...
Priority is like a soft dependency (An upstream failure will not cause a downstream test to be skipped) But dependsOn is like a hard dependency (An upstream failure will cause...
@DarpanSinghal - Like I said before, I think a bug that was always there in the system seems to have eventually gotten fixed.
@juherr - Can you please take another look at the table i shared earlier and pls let me know if that answers your question ? I think soft dependency can...
Because parallelism is set to classes. Thread count is 2. So the first 4 free nodes would be picked up for execution. And at that point in time group2 methods...
@juherr - I still fail to understand as to why do you do think that `t5` cannot be considered as part of independent methods because it does not have an...
@EasonYi - Couple of things. 1. There are merge conflicts with this PR. You would need to help fix that. 2. The changes seems to be huge and contains multiple...