aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/pytest/plugins/ya.make
blob: 41e20f6e2f039a6c68c32dedc7d1166f35ff4204 (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
PY23_LIBRARY()

PY_SRCS(
    ya.py
    collection.py
    conftests.py
    fixtures.py
    metrics.py
)

PEERDIR(
    library/python/filelock
    library/python/find_root
    library/python/testing/filter
    library/python/testing/yatest_common
)

IF (PYTHON2)
    PY_SRCS(
        fakeid_py2.py
    )

    PEERDIR(
        contrib/deprecated/python/faulthandler
    )
ELSE()
    PY_SRCS(
        fakeid_py3.py
    )
ENDIF()

END()