Skip to content

Commit 2de9e52

Browse files
committed
Use "test_" in the special cases test file names
1 parent 00f8768 commit 2de9e52

30 files changed

+1
-1
lines changed

generate_stubs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def {sig}:{doc}
142142
if filename == 'elementwise_functions.md':
143143
special_cases = parse_special_cases(text, verbose=not args.quiet)
144144
for func in special_cases:
145-
py_path = os.path.join('array_api_tests', 'special_cases', func + '.py')
145+
py_path = os.path.join('array_api_tests', 'special_cases', f'test_{func}.py')
146146
tests = []
147147
for typ in special_cases[func]:
148148
multiple = len(special_cases[func][typ]) > 1

0 commit comments

Comments
 (0)