diff options
| author | Tim Graham <timograham@gmail.com> | 2018-04-18 22:09:26 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-04-18 22:09:26 -0400 |
| commit | a917a5601f145042f31d0e2011bc41c2a3aaea7c (patch) | |
| tree | 8b465718a5a6f9e5e3da1f440dfbfaf8e8179727 /tests/template_tests/syntax_tests/test_numpy.py | |
| parent | c3437f734d03d93f798151f712064394652cabed (diff) | |
Refs #23890 -- Removed numpy deprecation warning silencing.
Obsolete since numpy 1.12.0.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_numpy.py')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_numpy.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/template_tests/syntax_tests/test_numpy.py b/tests/template_tests/syntax_tests/test_numpy.py index 7a6caf6528..09d57ebcc2 100644 --- a/tests/template_tests/syntax_tests/test_numpy.py +++ b/tests/template_tests/syntax_tests/test_numpy.py @@ -1,4 +1,3 @@ -import warnings from unittest import skipIf from django.test import SimpleTestCase @@ -7,23 +6,12 @@ from ..utils import setup try: import numpy - VisibleDeprecationWarning = numpy.VisibleDeprecationWarning except ImportError: numpy = False -except AttributeError: # numpy < 1.9.0, e.g. 1.8.2 in Debian 8 - VisibleDeprecationWarning = DeprecationWarning @skipIf(numpy is False, "Numpy must be installed to run these tests.") class NumpyTests(SimpleTestCase): - # Ignore numpy deprecation warnings (#23890) - if numpy: - warnings.filterwarnings( - "ignore", - "Using a non-integer number instead of an " - "integer will result in an error in the future", - VisibleDeprecationWarning - ) @setup({'numpy-array-index01': '{{ var.1 }}'}) def test_numpy_array_index01(self): |
