diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-06-03 17:18:50 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-06-03 17:18:50 +0300 |
commit | 77fedfb145f9d85f8ee822d8887e3db1b3ba64de (patch) | |
tree | ec94938318b9f85cec4783a917e07bca7031848e /util/string | |
parent | 8960fec6e5d0c0c345ff3f679ebb9dd0ffbcf25b (diff) | |
download | ydb-77fedfb145f9d85f8ee822d8887e3db1b3ba64de.tar.gz |
util: Flatten cython tests layout
ref:7427208d08ebeb9e88247fb7dac6445bc814d756
Diffstat (limited to 'util/string')
-rw-r--r-- | util/string/ut_cython/test_string.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/util/string/ut_cython/test_string.py b/util/string/ut_cython/test_string.py new file mode 100644 index 0000000000..f332597c59 --- /dev/null +++ b/util/string/ut_cython/test_string.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +from __future__ import print_function, absolute_import, division + +from util.string.cast_ut import TestFromString, TestToString + +# Test discovery does not work in cython modules. +# Reexporting test classes here to satisfy pylint and pytest. + +__all__ = [ + 'TestFromString', + 'TestToString', +] |