diff options
author | nkozlovskiy <nmk@ydb.tech> | 2023-09-29 12:24:06 +0300 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-09-29 12:41:34 +0300 |
commit | e0e3e1717e3d33762ce61950504f9637a6e669ed (patch) | |
tree | bca3ff6939b10ed60c3d5c12439963a1146b9711 /contrib/python/python-dateutil/tests | |
parent | 38f2c5852db84c7b4d83adfcb009eb61541d1ccd (diff) | |
download | ydb-e0e3e1717e3d33762ce61950504f9637a6e669ed.tar.gz |
add ydb deps
Diffstat (limited to 'contrib/python/python-dateutil/tests')
-rw-r--r-- | contrib/python/python-dateutil/tests/ya.make | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/python/python-dateutil/tests/ya.make b/contrib/python/python-dateutil/tests/ya.make new file mode 100644 index 00000000000..ef589f9e399 --- /dev/null +++ b/contrib/python/python-dateutil/tests/ya.make @@ -0,0 +1,37 @@ +PY23_TEST() + +PEERDIR( + contrib/python/python-dateutil + contrib/python/freezegun + contrib/python/hypothesis +) + +ENV(LC_ALL=ru_RU.UTF-8) +ENV(LANG=ru_RU.UTF-8) +# because we cannot change TZ in arcadia CI +ENV(DATEUTIL_MAY_NOT_CHANGE_TZ_VAR=1) + +SRCDIR(contrib/python/python-dateutil/dateutil/test) + +TEST_SRCS( + property/test_isoparse_prop.py + property/test_parser_prop.py + # property/test_tz_prop.py + __init__.py + _common.py + conftest.py + test_easter.py + test_import_star.py + test_imports.py + test_internals.py + test_isoparser.py + test_parser.py + test_relativedelta.py + test_rrule.py + test_tz.py + test_utils.py +) + +NO_LINT() + +END() |