diff -ur astropy-0.3.2/astropy/io/fits/tests/test_checksum.py astropy-0.3.2.skip2171.patch/astropy/io/fits/tests/test_checksum.py --- astropy-0.3.2/astropy/io/fits/tests/test_checksum.py 2014-05-26 18:28:14.308460414 +0200 +++ astropy-0.3.2.skip2171.patch/astropy/io/fits/tests/test_checksum.py 2014-05-26 18:42:19.060391868 +0200 @@ -42,6 +42,7 @@ hdul.close() def test_image_create(self): + pytest.skip("Skip in Fedora. (github isssue 2171)") n = np.arange(100) hdu = fits.PrimaryHDU(n) hdu.writeto(self.temp('tmp.fits'), clobber=True, checksum=True) @@ -57,6 +58,7 @@ assert hdul[0].header['DATASUM'] == '4950' def test_nonstandard_checksum(self): + pytest.skip("Skip in Fedora. (github isssue 2171)") hdu = fits.PrimaryHDU(np.arange(10.0 ** 6)) hdu.writeto(self.temp('tmp.fits'), clobber=True, checksum='nonstandard')