diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-09-08 13:34:21 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-09-08 17:34:14 +0200 |
commit | 83a07246c11b035539e7ba6a53e0794799a6df71 (patch) | |
tree | 883acb256277f3cc8107070626a47ba532f50107 /org.eclipse.jgit.http.test/tst/org/eclipse | |
parent | 74937d0328e40014ff70ecacb4f616913341c2e3 (diff) | |
download | jgit-83a07246c11b035539e7ba6a53e0794799a6df71.tar.gz jgit-83a07246c11b035539e7ba6a53e0794799a6df71.zip |
bazel: fix running http tests
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>
Diffstat (limited to 'org.eclipse.jgit.http.test/tst/org/eclipse')
-rw-r--r-- | org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java index cb30b3f7b7..d292d79c48 100644 --- a/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java +++ b/org.eclipse.jgit.http.test/tst/org/eclipse/jgit/http/test/AllFactoriesHttpTestCase.java @@ -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 { |