diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/python/pytest/py3/ya.make | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/python/pytest/py3/ya.make')
-rw-r--r-- | contrib/python/pytest/py3/ya.make | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/contrib/python/pytest/py3/ya.make b/contrib/python/pytest/py3/ya.make new file mode 100644 index 0000000000..88de1914cb --- /dev/null +++ b/contrib/python/pytest/py3/ya.make @@ -0,0 +1,101 @@ +PY3_LIBRARY() + +OWNER(dmitko g:python-contrib) + +VERSION(5.4.3) + +LICENSE(MIT) + +PEERDIR( + contrib/python/attrs + contrib/python/more-itertools + contrib/python/packaging + contrib/python/pluggy + contrib/python/py + contrib/python/wcwidth +) + +IF (OS_WINDOWS) + PEERDIR( + contrib/python/atomicwrites + ) +ENDIF() + +NO_LINT() + +NO_CHECK_IMPORTS( + __tests__.* # all test modules get imported when tests are run + _pytest.* +) + +PY_SRCS( + TOP_LEVEL + _pytest/__init__.py + _pytest/_argcomplete.py + _pytest/_code/__init__.py + _pytest/_code/code.py + _pytest/_code/source.py + _pytest/_io/__init__.py + _pytest/_io/saferepr.py + _pytest/_version.py + _pytest/assertion/__init__.py + _pytest/assertion/rewrite.py + _pytest/assertion/truncate.py + _pytest/assertion/util.py + _pytest/cacheprovider.py + _pytest/capture.py + _pytest/compat.py + _pytest/config/__init__.py + _pytest/config/argparsing.py + _pytest/config/exceptions.py + _pytest/config/findpaths.py + _pytest/debugging.py + _pytest/deprecated.py + _pytest/doctest.py + _pytest/faulthandler.py + _pytest/fixtures.py + _pytest/freeze_support.py + _pytest/helpconfig.py + _pytest/hookspec.py + _pytest/junitxml.py + _pytest/logging.py + _pytest/main.py + _pytest/mark/__init__.py + _pytest/mark/evaluate.py + _pytest/mark/legacy.py + _pytest/mark/structures.py + _pytest/monkeypatch.py + _pytest/nodes.py + _pytest/nose.py + _pytest/outcomes.py + _pytest/pastebin.py + _pytest/pathlib.py + _pytest/pytester.py + _pytest/python.py + _pytest/python_api.py + _pytest/recwarn.py + _pytest/reports.py + _pytest/resultlog.py + _pytest/runner.py + _pytest/setuponly.py + _pytest/setupplan.py + _pytest/skipping.py + _pytest/stepwise.py + _pytest/store.py + _pytest/terminal.py + _pytest/tmpdir.py + _pytest/unittest.py + _pytest/warning_types.py + _pytest/warnings.py + pytest/__init__.py + pytest/__main__.py +) + +RESOURCE_FILES( + PREFIX contrib/python/pytest/py3/ + .dist-info/METADATA + .dist-info/entry_points.txt + .dist-info/top_level.txt +) + +END() |