Update patch for bug 2516

This commit is contained in:
Sergio Pascual 2014-12-09 00:41:12 +01:00
parent 7705da2e92
commit 7f01f238c1
2 changed files with 13 additions and 2 deletions

View File

@ -5,7 +5,15 @@ diff -ur astropy-0.4.2/astropy/modeling/tests/test_models.py astropy-0.4.2.2516/
y = test_parameters['y_values'] y = test_parameters['y_values']
utils.assert_allclose(model(x), y, atol=self.eval_error) utils.assert_allclose(model(x), y, atol=self.eval_error)
+ @pytest.mark.xfail(reason="Skip in Fedora. (github isssue #2516)") + @pytest.mark.xfail(reason="xfail in Fedora. (github isssue #2516)")
@pytest.mark.skipif('not HAS_SCIPY') @pytest.mark.skipif('not HAS_SCIPY')
def test_fitter1D(self, model_class, test_parameters): def test_fitter1D(self, model_class, test_parameters):
""" """
@@ -431,6 +431,7 @@
utils.assert_allclose(fitted, expected, atol=self.fit_error)
@pytest.mark.skipif('not HAS_SCIPY')
+ @pytest.mark.xfail(reason='xfail in Fedora, bug #2156')
def test_deriv_1D(self, model_class, test_parameters):
"""
Test the derivative of a model by comparing results with an estimated derivative

View File

@ -3,7 +3,7 @@
Name: python-astropy Name: python-astropy
Version: 0.4.2 Version: 0.4.2
Release: 3%{?dist} Release: 4%{?dist}
Summary: A Community Python Library for Astronomy Summary: A Community Python Library for Astronomy
License: BSD License: BSD
@ -228,6 +228,9 @@ popd
%endif # with_python3 %endif # with_python3
%changelog %changelog
* Tue Dec 09 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.4.2-4
- Update patch for bug 2516
* Mon Dec 08 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.4.2-3 * Mon Dec 08 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.4.2-3
- Mark problematic tests as xfail via patch - Mark problematic tests as xfail via patch