Skip to content

Commit

Permalink
Do not output Cucumber to avoid failures in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 12, 2023
1 parent c7221ba commit 941db52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/epam/reportportal/karate/KarateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class KarateTest {
void testParallel() {
Results results = KarateReportPortalRunner
.path("classpath:feature")
.outputCucumberJson(true)
.outputCucumberJson(false)
.tags("~@ignore", "@To_run")
.parallel(2);
assertEquals(0, results.getFailCount());
Expand Down

0 comments on commit 941db52

Please sign in to comment.