summaryrefslogtreecommitdiff
path: root/numpy/tests/test_typing.py
diff options
context:
space:
mode:
authorJosh Wilson <person142@users.noreply.github.com>2020-06-07 12:25:19 -0700
committerJosh Wilson <person142@users.noreply.github.com>2020-06-07 12:25:19 -0700
commit3fee17a0da9277ee21e20018beeb2a42ef12a02f (patch)
tree58ca04f7d6a7ab603d9d7327d488f0bf5986cf4a /numpy/tests/test_typing.py
parent11b95d15f10c2bc652ed19d5e27efa0384396cb8 (diff)
downloadnumpy-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.py5
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")