aboutsummaryrefslogtreecommitdiffstats
path: root/util/memory/ut_cython
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.ru>2022-06-03 17:18:50 +0300
committerthegeorg <thegeorg@yandex-team.ru>2022-06-03 17:18:50 +0300
commit77fedfb145f9d85f8ee822d8887e3db1b3ba64de (patch)
treeec94938318b9f85cec4783a917e07bca7031848e /util/memory/ut_cython
parent8960fec6e5d0c0c345ff3f679ebb9dd0ffbcf25b (diff)
downloadydb-77fedfb145f9d85f8ee822d8887e3db1b3ba64de.tar.gz
util: Flatten cython tests layout
ref:7427208d08ebeb9e88247fb7dac6445bc814d756
Diffstat (limited to 'util/memory/ut_cython')
-rw-r--r--util/memory/ut_cython/test_memory.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/util/memory/ut_cython/test_memory.py b/util/memory/ut_cython/test_memory.py
new file mode 100644
index 0000000000..705f384726
--- /dev/null
+++ b/util/memory/ut_cython/test_memory.py
@@ -0,0 +1,12 @@
+# -*- coding: utf-8 -*-
+
+from __future__ import print_function, absolute_import, division
+
+from util.memory.blob_ut import TestBlob
+
+# Test discovery does not work in cython modules.
+# Reexporting test classes here to satisfy pylint and pytest.
+
+__all__ = [
+ 'TestBlob',
+]