diff options
| author | robot-piglet <[email protected]> | 2025-10-08 09:57:44 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2025-10-08 10:11:25 +0300 |
| commit | 94c10d61d66a7b6d830dbcb419ad44b330066765 (patch) | |
| tree | 421761b447c002ffbdc753aebf3d812f38f9d9e1 /contrib/python/wcwidth/py3/tests/test_table_integrity.py | |
| parent | 0f3f07ccb038beab419ba7ac850d95885f624989 (diff) | |
Intermediate changes
commit_hash:572d11de7e4c4fd16eeb91e832abea46ff94a4f2
Diffstat (limited to 'contrib/python/wcwidth/py3/tests/test_table_integrity.py')
| -rw-r--r-- | contrib/python/wcwidth/py3/tests/test_table_integrity.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/python/wcwidth/py3/tests/test_table_integrity.py b/contrib/python/wcwidth/py3/tests/test_table_integrity.py index 66e63ddbe3f..e680498162a 100644 --- a/contrib/python/wcwidth/py3/tests/test_table_integrity.py +++ b/contrib/python/wcwidth/py3/tests/test_table_integrity.py @@ -1,15 +1,18 @@ """ Executes verify-table-integrity.py as a unit test. """ +# std imports import os import sys import subprocess +# 3rd party 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 + 'verify-table-integrity.py')]) |
