diff options
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") |