diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-09-21 19:07:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 19:07:52 -0600 |
commit | 1b14317405a80dd3ecd55faf50dfde15b075a9c5 (patch) | |
tree | 231d6b152d79cbdf79380596ea8cdd8d03b60297 /numpy/f2py/tests | |
parent | f531cfd97a99ac8b534fff479e3388888319a606 (diff) | |
download | numpy-1b14317405a80dd3ecd55faf50dfde15b075a9c5.tar.gz |
BUG: Fix missing pytest import.
`test_array_from_pyobj.py` needs to import pytest.
Diffstat (limited to 'numpy/f2py/tests')
-rw-r--r-- | numpy/f2py/tests/test_array_from_pyobj.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_array_from_pyobj.py b/numpy/f2py/tests/test_array_from_pyobj.py index 310af339a..67a7f010c 100644 --- a/numpy/f2py/tests/test_array_from_pyobj.py +++ b/numpy/f2py/tests/test_array_from_pyobj.py @@ -4,6 +4,7 @@ import unittest import os import sys import copy +import pytest from numpy import ( array, alltrue, ndarray, zeros, dtype, intp, clongdouble |