This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 48ea56c Skip tests that causes problems on CI server 48ea56c is described below commit 48ea56c1565d31a7f7b2fbfeb1611d51325bebbd Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Mar 1 16:32:02 2018 +0100 Skip tests that causes problems on CI server --- tests/camel-itest/pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/camel-itest/pom.xml b/tests/camel-itest/pom.xml index 1470a9b..7db670c 100644 --- a/tests/camel-itest/pom.xml +++ b/tests/camel-itest/pom.xml @@ -430,6 +430,10 @@ <systemPropertyVariables> <derby.stream.error.file>target/derby.log</derby.stream.error.file> </systemPropertyVariables> + <excludes> + <!-- exclude doc tests as they dont work on CI server --> + <exclude>**/*DocumentationTest.*</exclude> + </excludes> </configuration> </plugin> <plugin> @@ -483,7 +487,7 @@ <configuration> <excludes> <!-- exclude doc tests as they dont work on CI server --> - <exclude>**/doc/*Test.java</exclude> + <exclude>**/*DocumentationTest.*</exclude> </excludes> </configuration> </plugin> -- To stop receiving notification emails like this one, please contact davscl...@apache.org.