]> source.dussan.org Git - jgit.git/commitdiff
bazel: fix running http tests 21/149121/5
authorMatthias Sohn <matthias.sohn@sap.com>
Sun, 8 Sep 2019 11:34:21 +0000 (13:34 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Sun, 8 Sep 2019 15:34:14 +0000 (17:34 +0200)
Other than Maven bazel seems unable to cope with abstract
AllFactoriesHttpTestCase having no test methods, hence tag this class
with @Ignore.

Change-Id: I9dfe43f882ad073b284648e24844b51877d87776
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java

index cb30b3f7b738011b4c72805a2fecee58be825e80..d292d79c488b4622977a72f6c92eed2dd441aee3 100644 (file)
@@ -52,6 +52,7 @@ import org.eclipse.jgit.transport.http.JDKHttpConnectionFactory;
 import org.eclipse.jgit.transport.http.apache.HttpClientConnectionFactory;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
+import org.junit.Ignore;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
 import org.junit.runners.Parameterized.Parameters;
@@ -61,6 +62,7 @@ import org.junit.runners.Parameterized.Parameters;
  * factories provided in JGit: the JDK {@link JDKHttpConnectionFactory} and the
  * Apache HTTP {@link HttpClientConnectionFactory}.
  */
+@Ignore
 @RunWith(Parameterized.class)
 public abstract class AllFactoriesHttpTestCase extends HttpTestCase {