Skip to content

Commit

Permalink
Investigate flaky tests
Browse files Browse the repository at this point in the history
Don't re-try failed tests in sshd-sftp. In GitHub CI, we have a flaky
test. Not re-trying will make the build fail, and gives the test output
as artifacts, which hopefully contains some more information about what
might be going on.
  • Loading branch information
tomaswolf committed Nov 1, 2022
1 parent ae3851a commit 14ca864
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sshd-sftp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
<systemProperties>
<org.apache.sshd.common.io.IoServiceFactoryFactory>org.apache.sshd.common.io.nio2.Nio2ServiceFactoryFactory</org.apache.sshd.common.io.IoServiceFactoryFactory>
</systemProperties>
<rerunFailingTestsCount>0</rerunFailingTestsCount>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -162,6 +163,7 @@
<systemProperties>
<org.apache.sshd.common.io.IoServiceFactoryFactory>org.apache.sshd.mina.MinaServiceFactoryFactory</org.apache.sshd.common.io.IoServiceFactoryFactory>
</systemProperties>
<rerunFailingTestsCount>0</rerunFailingTestsCount>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -205,6 +207,7 @@
<systemProperties>
<org.apache.sshd.common.io.IoServiceFactoryFactory>org.apache.sshd.netty.NettyIoServiceFactoryFactory</org.apache.sshd.common.io.IoServiceFactoryFactory>
</systemProperties>
<rerunFailingTestsCount>0</rerunFailingTestsCount>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 14ca864

Please sign in to comment.