aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest/py3/ya.make
blob: aeeeef3c15d863b6e044dd213896fd4d66d019e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
PY3_LIBRARY()
 
OWNER(dmitko g:python-contrib)
 
VERSION(6.2.5)
 
LICENSE(MIT)
 
PEERDIR( 
    contrib/python/attrs 
    contrib/python/iniconfig
    contrib/python/packaging
    contrib/python/pluggy 
    contrib/python/py 
    contrib/python/toml
) 
 
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/_io/terminalwriter.py
    _pytest/_io/wcwidth.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/expression.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/pytester_assertions.py
    _pytest/python.py
    _pytest/python_api.py 
    _pytest/recwarn.py 
    _pytest/reports.py 
    _pytest/runner.py 
    _pytest/setuponly.py 
    _pytest/setupplan.py 
    _pytest/skipping.py 
    _pytest/stepwise.py 
    _pytest/store.py
    _pytest/terminal.py 
    _pytest/threadexception.py
    _pytest/timing.py
    _pytest/tmpdir.py 
    _pytest/unittest.py 
    _pytest/unraisableexception.py
    _pytest/warning_types.py
    _pytest/warnings.py 
    pytest/__init__.py
    pytest/__main__.py
    pytest/collect.py
) 
 
RESOURCE_FILES(
    PREFIX contrib/python/pytest/py3/
    .dist-info/METADATA
    .dist-info/entry_points.txt
    .dist-info/top_level.txt
    _pytest/py.typed
    pytest/py.typed
)

END()