aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/pytest/plugins/ya.make
blob: e1b1e16f021a676a52838e76e0e072ee7997d1c7 (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
OWNER(g:yatest)

PY23_LIBRARY()

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

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

IF (PYTHON2)
    PY_SRCS(
        fakeid_py2.py
    )

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

END()