Skip to content

Commit 25a4c69

Browse files
committed
Skip iridl.ldeo.columbia.edu tests for PRs
GitHub appears to have intermittent access issues when running a dap2 test against iridl.ldeo.columbia.edu (see Unidata#1396 (comment)). Disable this specific test for pull requests, but still run locally and on jenkins. Also, they have upgraded their server to support https, so we will use that in the test.
1 parent 79d4efd commit 25a4c69

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

opendap/src/test/java/ucar/nc2/dods/TestDodsV.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import opendap.dap.DConnect2;
77
import opendap.dap.DDS;
88
import org.junit.Test;
9+
import org.junit.experimental.categories.Category;
10+
import ucar.unidata.util.test.category.NotPullRequest;
911

1012
public class TestDodsV {
1113

@@ -30,11 +32,9 @@ private static void doit(String urlName) throws IOException, DAP2Exception {
3032
}
3133

3234
@Test
35+
@Category(NotPullRequest.class)
3336
public void testStuff() throws IOException, DAP2Exception {
3437
// doit("http://localhost:8080/thredds/dodsC/ncdodsTest/conventions/zebra/SPOL_3Volumes.nc");
35-
doit("http://iridl.ldeo.columbia.edu/SOURCES/.CAYAN/dods");
38+
doit("https://iridl.ldeo.columbia.edu/SOURCES/.CAYAN/dods");
3639
}
37-
38-
39-
4040
}

0 commit comments

Comments
 (0)