From 7c7989a83fc8fd01d258423cf881e61acd5739ef Mon Sep 17 00:00:00 2001 From: Philipp Ossler Date: Fri, 9 Jul 2021 15:01:26 +0200 Subject: [PATCH] test(junit): disable tests for reusable env * the tests for the reusable environment fail because of #82 --- .../bpmnspec/junit/BpmnSpecExtensionReuseEnvironmentTest.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/junit-extension/src/test/kotlin/io/zeebe/bpmnspec/junit/BpmnSpecExtensionReuseEnvironmentTest.kt b/junit-extension/src/test/kotlin/io/zeebe/bpmnspec/junit/BpmnSpecExtensionReuseEnvironmentTest.kt index 06f3406..925f939 100644 --- a/junit-extension/src/test/kotlin/io/zeebe/bpmnspec/junit/BpmnSpecExtensionReuseEnvironmentTest.kt +++ b/junit-extension/src/test/kotlin/io/zeebe/bpmnspec/junit/BpmnSpecExtensionReuseEnvironmentTest.kt @@ -3,6 +3,7 @@ package io.zeebe.bpmnspec.junit import io.zeebe.bpmnspec.SpecRunner import io.zeebe.bpmnspec.runner.zeebe.ZeebeTestRunner import org.assertj.core.api.Assertions.assertThat +import org.junit.Ignore import org.junit.jupiter.api.AfterAll import org.junit.jupiter.api.BeforeAll import org.junit.jupiter.params.ParameterizedTest @@ -10,6 +11,7 @@ import org.junit.jupiter.params.ParameterizedTest @BpmnSpecRunner class BpmnSpecExtensionReuseEnvironmentTest { + @Ignore("blocked by the bug #82") @ParameterizedTest @BpmnSpecSource(specResources = ["spec-with-wf-alias.yaml"]) fun `exclusive gateway`(spec: BpmnSpecTestCase) {