Description: Forbidding network access for tests.
Author: Andrius Merkys <merkys@debian.org>
--- a/mmtf-codec/src/test/java/org/rcsb/mmtf/decoder/TestReaderUtils.java
+++ b/mmtf-codec/src/test/java/org/rcsb/mmtf/decoder/TestReaderUtils.java
@@ -1,5 +1,6 @@
 package org.rcsb.mmtf.decoder;
 
+import org.junit.Ignore;
 import org.junit.Test;
 import org.rcsb.mmtf.dataholders.MmtfStructure;
 
@@ -95,6 +96,7 @@
 	 * Test that we can read an mmtf file from the MMTF web server
 	 * @throws IOException error accessing the data
 	 */
+        @Ignore("ignoring tests requiring network access")
 	@Test 
 	public void testReadFromUrl() throws IOException, ParseException {
 		MmtfStructure mmtfBean = ReaderUtils.getDataFromUrl("4CUP");
@@ -108,6 +110,7 @@
 	 * Test that we can read an mmtf file from the MMTF web server using HTTPS
 	 * @throws IOException error accessing the data
 	 */
+        @Ignore("ignoring tests requiring network access")
 	@Test 
 	public void testReadFromHttpsUrl() throws IOException, ParseException {
 		MmtfStructure mmtfBean = ReaderUtils.getDataFromUrl("4CUP", true, false);
@@ -121,6 +124,7 @@
 	 * Test that we can read a reduced mmtf file from the MMTF web server using HTTP
 	 * @throws IOException error accessing the data
 	 */
+        @Ignore("ignoring tests requiring network access")
 	@Test 
 	public void testReadFromReducedUrl() throws IOException, ParseException {
 		MmtfStructure mmtfBean = ReaderUtils.getDataFromUrl("4CUP", true, true);
@@ -134,6 +138,7 @@
 	 * Test that we can read a reduced mmtf file from the MMTF web server using HTTPS
 	 * @throws IOException error accessing the data
 	 */
+        @Ignore("ignoring tests requiring network access")
 	@Test 
 	public void testReadFromReducedHttpsUrl() throws IOException, ParseException {
 		MmtfStructure mmtfBean = ReaderUtils.getDataFromUrl("4CUP", true, true);
