aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/wcwidth/py3/tests/test_table_integrity.py
diff options
context:
space:
mode:
authorrobot-codenav <robot-codenav@yandex-team.com>2024-01-22 00:00:57 +0300
committerAlexander Smirnov <alex@ydb.tech>2024-01-24 15:01:50 +0300
commit3d8cfb30b618cc25152bb150ffb0b4d8d562640e (patch)
treea0d4057b57b0735ae37c5a6c89446b2a404604d5 /contrib/python/wcwidth/py3/tests/test_table_integrity.py
parent0898bd17de178e66a660663fd9a8727d8108f8a8 (diff)
downloadydb-3d8cfb30b618cc25152bb150ffb0b4d8d562640e.tar.gz
Update build documentations for rXXXXXX
Task: https://sandbox.yandex-team.ru/task/2130955492/view update build docs
Diffstat (limited to 'contrib/python/wcwidth/py3/tests/test_table_integrity.py')
-rw-r--r--contrib/python/wcwidth/py3/tests/test_table_integrity.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/python/wcwidth/py3/tests/test_table_integrity.py b/contrib/python/wcwidth/py3/tests/test_table_integrity.py
new file mode 100644
index 0000000000..66e63ddbe3
--- /dev/null
+++ b/contrib/python/wcwidth/py3/tests/test_table_integrity.py
@@ -0,0 +1,15 @@
+"""
+Executes verify-table-integrity.py as a unit test.
+"""
+import os
+import sys
+import subprocess
+
+import pytest
+
+@pytest.mark.skipif(sys.version_info[:2] != (3, 12), reason='Test only with a single version of python')
+def test_verify_table_integrity():
+ subprocess.check_output([sys.executable, os.path.join(os.path.dirname(__file__),
+ os.path.pardir,
+ 'bin',
+ 'verify-table-integrity.py')]) \ No newline at end of file