Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dts war version used in testing #1308

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gradle/any/gretty.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ gretty {
farm {
jvmArgs = ["-Dlog4j.configurationFile=$rootDir/gradle/gretty/log4j2Config.xml"]
// used by :dap4 test
webapp 'edu.ucar:d4ts:5.0.0-beta8@war', contextPath: '/d4ts'
webapp 'edu.ucar:d4ts:5.4@war', contextPath: '/d4ts'

// :opendap and :httpservices test.
webapp 'edu.ucar:dtswar:5.0.0-beta8@war', contextPath: '/dts'
webapp 'edu.ucar:dtswar:5.4@war', contextPath: '/dts'
integrationTestTask = 'test'

// Enable TLS
Expand Down
2 changes: 2 additions & 0 deletions httpservices/src/test/java/ucar/nc2/util/net/TestHang.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
Expand All @@ -32,6 +33,7 @@
* with at least one being non-existent
*/

@Ignore("Temporarily as a test")
@RunWith(Parameterized.class)
public class TestHang {
private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
Expand Down
Loading