2018-03-22 15:40:54 UTC - Ivan Kelly: @Matteo Merli how is it that failed tests
are rerun in pulsar?
----
2018-03-22 15:41:04 UTC - Ivan Kelly: i don't see the rerun stuff at all
----
2018-03-22 15:41:08 UTC - Ivan Kelly: in the pom
----
2018-03-22 16:12:24 UTC - Matteo Merli: It’s in the TestNG config, though it
doesn’t seem to be really working
----
2018-03-22 16:12:41 UTC - Matteo Merli: since we’re using testNG it’s more
complicated than with Junit
----
2018-03-22 16:12:49 UTC - Ivan Kelly: it's working enough to annoy me
----
2018-03-22 16:13:04 UTC - Ivan Kelly: for stuff like replicatortest, it uses a
beforeClass and afterclass
----
2018-03-22 16:13:09 UTC - Ivan Kelly: so second run is dirty
----
2018-03-22 16:13:44 UTC - Matteo Merli: oh, I see
----
2018-03-22 16:14:29 UTC - Ivan Kelly: where is the testng file?
----
2018-03-22 16:14:36 UTC - Ivan Kelly: configuration i mean
----
2018-03-22 16:15:08 UTC - Matteo Merli: in `pulsar-broker/pom.xml` :
----
2018-03-22 16:15:11 UTC - Matteo Merli: ```
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<properties>
<property>
<name>listener</name>
<value>org.apache.pulsar.tests.AnnotationListener</value>
</property>
</properties>
</configuration>
</plugin>
```
----
2018-03-22 16:15:37 UTC - Matteo Merli: The retry is enabled only in few modules
----
2018-03-22 16:16:30 UTC - Ivan Kelly: ah
----
2018-03-22 16:16:41 UTC - Matteo Merli: I had another PR that was enabling
everywhere, with auto test timeout, but still there were issues with the tests
there: <https://github.com/apache/incubator-pulsar/pull/1347>
----