blob: 607aeb8218c6b70779bbdcb9e62b13886acd643b (
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
|
PY23_LIBRARY()
PY_SRCS(
__init__.py
config.py
context.py
main.py
rewrite.py
yatest_tools.py
)
STYLE_PYTHON()
PEERDIR(
contrib/python/attrs
contrib/python/python-dateutil
contrib/python/ipdb
contrib/python/py
contrib/python/pytest
library/python/pytest/plugins
library/python/testing/yatest_common
library/python/testing/yatest_lib
)
IF (NOT OPENSOURCE AND NOT OS_ANDROID AND NOT OS_IOS AND NOT MAPSMOBI_BUILD_TARGET)
# FIXME: should be fixed properly in YA-1499
PEERDIR(contrib/tools/gprof2dot)
ENDIF()
RESOURCE_FILES(
PREFIX library/python/pytest/
pytest.yatest.ini
)
END()
RECURSE_FOR_TESTS(
ut
)
|