diff options
author | Josh Wilson <person142@users.noreply.github.com> | 2020-06-07 12:25:19 -0700 |
---|---|---|
committer | Josh Wilson <person142@users.noreply.github.com> | 2020-06-07 12:25:19 -0700 |
commit | 3fee17a0da9277ee21e20018beeb2a42ef12a02f (patch) | |
tree | 58ca04f7d6a7ab603d9d7327d488f0bf5986cf4a /numpy/tests/test_typing.py | |
parent | 11b95d15f10c2bc652ed19d5e27efa0384396cb8 (diff) | |
download | numpy-3fee17a0da9277ee21e20018beeb2a42ef12a02f.tar.gz |
MAINT: move typing tests cases into a subdirectory of numpy/tests
Diffstat (limited to 'numpy/tests/test_typing.py')
-rw-r--r-- | numpy/tests/test_typing.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/numpy/tests/test_typing.py b/numpy/tests/test_typing.py index 757ea0b52..3fb1ce243 100644 --- a/numpy/tests/test_typing.py +++ b/numpy/tests/test_typing.py @@ -12,7 +12,10 @@ except ImportError: else: NO_MYPY = False -TESTS_DIR = os.path.dirname(os.path.abspath(__file__)) +TESTS_DIR = os.path.join( + os.path.dirname(os.path.abspath(__file__)), + "typing", +) PASS_DIR = os.path.join(TESTS_DIR, "pass") FAIL_DIR = os.path.join(TESTS_DIR, "fail") REVEAL_DIR = os.path.join(TESTS_DIR, "reveal") |