You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
282 B
15 lines
282 B
2 years ago
|
from __future__ import division, absolute_import, print_function
|
||
|
|
||
|
import sys
|
||
|
from nose import SkipTest
|
||
|
|
||
|
|
||
|
def test_import():
|
||
|
if sys.version_info[0] >= 3:
|
||
|
raise SkipTest("phantom_import not ported to Py3")
|
||
|
|
||
|
import numpydoc.phantom_import
|
||
|
|
||
|
|
||
|
# No tests at the moment...
|