diff options
author | shadchin <shadchin@yandex-team.com> | 2023-10-10 12:36:25 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2023-10-10 13:11:10 +0300 |
commit | a14f08a2b5d35a767003c3c71e4d6c33cff9647b (patch) | |
tree | dc6645f05a5df19ade9da6b91ba0d85070021414 /contrib/python/psutil/py3/test | |
parent | 0b9dc2e3d83dc4a141800aff0dc3a4a83e30e308 (diff) | |
download | ydb-a14f08a2b5d35a767003c3c71e4d6c33cff9647b.tar.gz |
Split psutil on py2/py3
Diffstat (limited to 'contrib/python/psutil/py3/test')
-rw-r--r-- | contrib/python/psutil/py3/test/test.py | 4 | ||||
-rw-r--r-- | contrib/python/psutil/py3/test/ya.make | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/contrib/python/psutil/py3/test/test.py b/contrib/python/psutil/py3/test/test.py new file mode 100644 index 00000000000..4f5a0e50d89 --- /dev/null +++ b/contrib/python/psutil/py3/test/test.py @@ -0,0 +1,4 @@ +from library.python.import_test import check_imports +test_imports = lambda: check_imports(no_check=['psutil._ps*']) +#from psutil._psutil_posix import net_if_addrs + diff --git a/contrib/python/psutil/py3/test/ya.make b/contrib/python/psutil/py3/test/ya.make new file mode 100644 index 00000000000..72d9c04afc8 --- /dev/null +++ b/contrib/python/psutil/py3/test/ya.make @@ -0,0 +1,8 @@ +PY3TEST() +PEERDIR( + contrib/python/psutil + library/python/import_test +) +TEST_SRCS(test.py) +NO_LINT() +END() |