This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new f74b939  Disable retry on integration tests (#3081)
f74b939 is described below

commit f74b939fc8824ce829c9d4e3336f28f6deb097c5
Author: Ivan Kelly <[email protected]>
AuthorDate: Wed Nov 28 19:01:30 2018 +0100

    Disable retry on integration tests (#3081)
    
    In the original arquillian tests, retry was disabled because tests are
    run against a cluster that's brought up at class level, so any retry
    would be against a dirty environment. This seems to have been
    accidently changed when moving to testcontainers, thought the same
    condition holds true.
    
    This patch disabled the retries. These are new tests. They shouldn't
    be flaking.
---
 tests/integration/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/integration/pom.xml b/tests/integration/pom.xml
index 54d51ac..a7b7057 100644
--- a/tests/integration/pom.xml
+++ b/tests/integration/pom.xml
@@ -180,6 +180,10 @@
             <configuration>
               <properties>
                 <property>
+                  <name>testRetryCount</name>
+                  <value>0</value>
+                </property>
+                <property>
                   <name>listener</name>
                   
<value>org.apache.pulsar.tests.PulsarTestListener,org.apache.pulsar.tests.AnnotationListener</value>
                 </property>

Reply via email to