@@ -45,19 +45,22 @@ def setup_class(self):
4545 self .branch = 'OMERO-DEV-latest'
4646 self .ice = '3.6'
4747
48+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
4849 def testDownloadNoUnzip (self , tmpdir ):
4950 with tmpdir .as_cwd ():
5051 self .download ('--skipunzip' , '--branch' , self .branch ,
5152 '--ice' , self .ice )
5253 files = tmpdir .listdir ()
5354 assert len (files ) == 1
5455
56+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
5557 def testDownloadUnzip (self , tmpdir ):
5658 with tmpdir .as_cwd ():
5759 self .download ('--branch' , self .branch , '--ice' , self .ice )
5860 files = tmpdir .listdir ()
5961 assert len (files ) == 2
6062
63+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
6164 def testDownloadUnzipDir (self , tmpdir ):
6265 with tmpdir .as_cwd ():
6366 self .download ('--unzipdir' , 'OMERO.py' , '--branch' , self .branch ,
@@ -66,6 +69,7 @@ def testDownloadUnzipDir(self, tmpdir):
6669 assert expected .exists ()
6770 assert expected .isdir ()
6871
72+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
6973 def testDownloadSym (self , tmpdir ):
7074 with tmpdir .as_cwd ():
7175 self .download ('--branch' , self .branch , '--ice' , self .ice ,
@@ -88,6 +92,7 @@ def testDownloadSym(self, tmpdir):
8892 assert sym2 == (old_div (tmpdir , 'custom.sym' ))
8993 assert sym2 .isdir ()
9094
95+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
9196 def testDownloadRelease (self , tmpdir ):
9297 with tmpdir .as_cwd ():
9398 self .download ('--release' , 'latest' , '--ice' , self .ice )
@@ -98,6 +103,7 @@ def testDownloadNonExistingArtifact(self):
98103 with pytest .raises (AttributeError ):
99104 self .download ('-n' , '--release' , '5.3' , '--ice' , '3.3' )
100105
106+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
101107 def testDownloadBuildNumber (self ):
102108 # Old Jenkins artifacts are deleted so we can't download.
103109 # Instead assert that an AttributeError is raised.
@@ -113,6 +119,7 @@ class TestDownloadBioFormats(Downloader):
113119 def setup_class (self ):
114120 self .branch = 'BIOFORMATS-DEV-latest'
115121
122+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
116123 def testDownloadJar (self , tmpdir ):
117124 self .artifact = 'formats-api'
118125 with tmpdir .as_cwd ():
@@ -121,6 +128,7 @@ def testDownloadJar(self, tmpdir):
121128 assert len (files ) == 1
122129 assert files [0 ].basename == 'formats-api.jar'
123130
131+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
124132 def testDownloadFullFilename (self , tmpdir ):
125133 self .artifact = 'formats-api'
126134 with tmpdir .as_cwd ():
@@ -136,6 +144,7 @@ def setup_class(self):
136144 self .artifact = ''
137145 self .branch = 'latest'
138146
147+ @pytest .mark .skipif (True , reason = 'URL to be updated' )
139148 def testDownloadList (self , tmpdir ):
140149 with tmpdir .as_cwd ():
141150 self .download ('--branch' , self .branch )
0 commit comments