File tree 1 file changed +4
-1
lines changed 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ def test_roundtrip_endian(self):
347
347
@contextlib .contextmanager
348
348
def create_tmp_file (suffix = '.nc' ):
349
349
temp_dir = tempfile .mkdtemp ()
350
- path = os .path .join (temp_dir , 'temp-%s. %s' % (next (_counter ), suffix ))
350
+ path = os .path .join (temp_dir , 'temp-%s%s' % (next (_counter ), suffix ))
351
351
try :
352
352
yield path
353
353
finally :
@@ -730,6 +730,9 @@ def test_cross_engine_read_write_netcdf4(self):
730
730
# Drop dim3, because its labels include strings. These appear to be
731
731
# not properly read with python-netCDF4, which converts them into
732
732
# unicode instead of leaving them as bytes.
733
+ if PY3 :
734
+ raise unittest .SkipTest ('see https://github.com/xray/xray/issues/535' )
735
+
733
736
data = create_test_data ().drop ('dim3' )
734
737
data .attrs ['foo' ] = 'bar'
735
738
valid_engines = ['netcdf4' , 'h5netcdf' ]
You can’t perform that action at this time.
0 commit comments