summaryrefslogtreecommitdiff
path: root/numpy/testing/decorators.py
blob: 1fe72e2e35873530177cce501e73ca12b05d7812 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
Back compatibility decorators module. It will import the appropriate
set of tools

"""
import os

if int(os.getenv('NPY_PYTEST', '0')):
    from .pytest_tools.decorators import *
else:
    from .nose_tools.decorators import *