We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 681331a commit 988a242Copy full SHA for 988a242
dd-smoke-tests/src/main/groovy/datadog/smoketest/RunLastExtension.groovy
@@ -6,6 +6,8 @@ import org.spockframework.runtime.model.FeatureInfo
6
class RunLastExtension implements IAnnotationDrivenExtension<RunLast> {
7
@Override
8
void visitFeatureAnnotations(List<RunLast> annotations, FeatureInfo feature) {
9
- feature.setExecutionOrder(Integer.MAX_VALUE)
+ if (!annotations.isEmpty()) {
10
+ feature.setExecutionOrder(Integer.MAX_VALUE)
11
+ }
12
}
13
0 commit comments