This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
The following commit(s) were added to refs/heads/master by this push:
new 438fc51 Disable couchbase tests by default because they are too
unreliable
438fc51 is described below
commit 438fc511d114c492c5349f647f23516f1b1a9071
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Mon Jan 11 18:24:24 2021 +0100
Disable couchbase tests by default because they are too unreliable
---
.../kafkaconnector/couchbase/sink/CamelSinkCouchbaseITCase.java | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git
a/tests/itests-couchbase/src/test/java/org/apache/camel/kafkaconnector/couchbase/sink/CamelSinkCouchbaseITCase.java
b/tests/itests-couchbase/src/test/java/org/apache/camel/kafkaconnector/couchbase/sink/CamelSinkCouchbaseITCase.java
index 1de1bbc..21b5c7c 100644
---
a/tests/itests-couchbase/src/test/java/org/apache/camel/kafkaconnector/couchbase/sink/CamelSinkCouchbaseITCase.java
+++
b/tests/itests-couchbase/src/test/java/org/apache/camel/kafkaconnector/couchbase/sink/CamelSinkCouchbaseITCase.java
@@ -58,9 +58,12 @@ import static org.junit.jupiter.api.Assertions.fail;
/*
This test is slow and flaky. It tends to fail on systems with limited
resources and slow I/O. Therefore, it is
- disabled by default.
+ disabled by default. Also, suffers from bugs in the couchbase test container:
+ - https://github.com/testcontainers/testcontainers-java/issues/2993
+
+ Therefore, this test is marked as flaky and only runs if specifically enabled.
*/
-@EnabledIfSystemProperty(named = "enable.slow.tests", matches = "true")
+@EnabledIfSystemProperty(named = "enable.flaky.tests", matches = "true")
public class CamelSinkCouchbaseITCase extends AbstractKafkaTest {
@RegisterExtension
public static CouchbaseService service =
CouchbaseServiceFactory.getService();