diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-18 10:16:08 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-18 10:29:14 +0300 |
commit | 691a35e0546dbd763dd51657b1a3816a3c40e094 (patch) | |
tree | 651c5813885adb4fa8993f44b364a0a7a148e7ad /contrib/python/numpy/py3/tests/array_api | |
parent | 72b6bf1f88ac4ec4ed2adf6dda915278c5d2b924 (diff) | |
download | ydb-691a35e0546dbd763dd51657b1a3816a3c40e094.tar.gz |
Intermediate changes
commit_hash:1a5e9f4585838729a12fdcba5306caddb2c0c7ac
Diffstat (limited to 'contrib/python/numpy/py3/tests/array_api')
-rw-r--r-- | contrib/python/numpy/py3/tests/array_api/ya.make | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/python/numpy/py3/tests/array_api/ya.make b/contrib/python/numpy/py3/tests/array_api/ya.make new file mode 100644 index 0000000000..8e54a6a20d --- /dev/null +++ b/contrib/python/numpy/py3/tests/array_api/ya.make @@ -0,0 +1,24 @@ +PY3TEST() + +PEERDIR( + contrib/python/numpy/py3/tests +) + +NO_LINT() + +SRCDIR(contrib/python/numpy/py3) + +TEST_SRCS( + numpy/array_api/tests/__init__.py + numpy/array_api/tests/test_array_object.py + numpy/array_api/tests/test_creation_functions.py + numpy/array_api/tests/test_data_type_functions.py + numpy/array_api/tests/test_elementwise_functions.py + numpy/array_api/tests/test_indexing_functions.py + numpy/array_api/tests/test_manipulation_functions.py + numpy/array_api/tests/test_set_functions.py + numpy/array_api/tests/test_sorting_functions.py + numpy/array_api/tests/test_validation.py +) + +END() |