diff --git a/fork-runner/src/main/java/com/shazam/fork/ForkRunner.java b/fork-runner/src/main/java/com/shazam/fork/ForkRunner.java index ac7b3f21..076ab0ff 100755 --- a/fork-runner/src/main/java/com/shazam/fork/ForkRunner.java +++ b/fork-runner/src/main/java/com/shazam/fork/ForkRunner.java @@ -74,7 +74,8 @@ public boolean run() { Collection testCases = testClassLoader.loadTestSuite(); summaryGeneratorHook.registerHook(pools, testCases); - executeTests(poolExecutor, pools, testCases); + executeTests(poolExecutor, pools, testCases + .stream().filter(it -> !it.isIgnored()).collect(toList())); AggregatedTestResult aggregatedTestResult = aggregator.aggregateTestResults(pools, testCases); if (!aggregatedTestResult.getFatalCrashedTests().isEmpty()) {