aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/testing/yatest_common/ya.make
blob: 2f5aa3bf3902cd82b52a514850c4a3f39cecc6e8 (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
PY23_LIBRARY()

NO_EXTENDED_SOURCE_SEARCH()

PY_SRCS(
    TOP_LEVEL
    yatest/__init__.py
    yatest/common/__init__.py
    yatest/common/benchmark.py
    yatest/common/canonical.py
    yatest/common/environment.py
    yatest/common/errors.py
    yatest/common/misc.py
    yatest/common/network.py
    yatest/common/path.py
    yatest/common/process.py
    yatest/common/runtime.py
    yatest/common/runtime_java.py
)

STYLE_PYTHON()

PEERDIR(
    contrib/python/packaging
    contrib/python/six
    library/python/cores
    library/python/filelock
    library/python/fs
    library/python/testing/yatest_lib
)

IF (NOT CATBOOST_OPENSOURCE)
    PEERDIR(
        library/python/coredump_filter
    )
ENDIF()

END()