diff options
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index d1222f489..856cca8eb 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -1,6 +1,9 @@ from __future__ import division, absolute_import, print_function +import sys + import numpy as np +import pytest def check_dir(module, module_name=None): @@ -16,6 +19,9 @@ def check_dir(module, module_name=None): return results +@pytest.mark.skipif( + sys.version_info[0] < 3, + reason="NumPy exposes slightly different functions on Python 2") def test_numpy_namespace(): # None of these objects are publicly documented. undocumented = { |