diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-07-07 17:25:22 -0600 |
---|---|---|
committer | xoviat <xoviat@users.noreply.github.com> | 2017-12-22 17:30:49 -0600 |
commit | 58348a4e752fe3f951e38b445f5f11f33b53ab80 (patch) | |
tree | 65b5b866c1448cce7d0ff73dfd9445fd5d2e46f1 /numpy/testing | |
parent | 4ec6c0692c9452ca770f0de34f14c9e02366a3e1 (diff) | |
download | numpy-58348a4e752fe3f951e38b445f5f11f33b53ab80.tar.gz |
MAINT: Add __all__ to nose_tools/decorators.py.
Diffstat (limited to 'numpy/testing')
-rw-r--r-- | numpy/testing/nose_tools/decorators.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/testing/nose_tools/decorators.py b/numpy/testing/nose_tools/decorators.py index 12531e734..243c0c8c1 100644 --- a/numpy/testing/nose_tools/decorators.py +++ b/numpy/testing/nose_tools/decorators.py @@ -19,6 +19,9 @@ import collections from .utils import SkipTest, assert_warns +__all__ = ['slow', 'setastest', 'skipif', 'knownfailureif', 'deprecated', + 'parametrize',] + def slow(t): """ |