mirror of https://github.com/django/django.git
Refs #23890 -- Removed numpy deprecation warning silencing.
Obsolete since numpy 1.12.0.
This commit is contained in:
parent
c3437f734d
commit
a917a5601f
|
@ -1,4 +1,3 @@
|
||||||
import warnings
|
|
||||||
from unittest import skipIf
|
from unittest import skipIf
|
||||||
|
|
||||||
from django.test import SimpleTestCase
|
from django.test import SimpleTestCase
|
||||||
|
@ -7,23 +6,12 @@ from ..utils import setup
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import numpy
|
import numpy
|
||||||
VisibleDeprecationWarning = numpy.VisibleDeprecationWarning
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
numpy = False
|
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.")
|
@skipIf(numpy is False, "Numpy must be installed to run these tests.")
|
||||||
class NumpyTests(SimpleTestCase):
|
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 }}'})
|
@setup({'numpy-array-index01': '{{ var.1 }}'})
|
||||||
def test_numpy_array_index01(self):
|
def test_numpy_array_index01(self):
|
||||||
|
|
Loading…
Reference in New Issue