aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/runtime_py3/test/ya.make
blob: e0c4061ad2ccd525bf8a204f7eca4bb3dfb6bd43 (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
PY3TEST()

STYLE_PYTHON()

DEPENDS(library/python/runtime_py3/test/traceback)

PEERDIR(
    contrib/python/parameterized
    contrib/python/PyYAML
)

PY_SRCS(
    TOP_LEVEL
    resources/__init__.py
    resources/submodule/__init__.py
)

TEST_SRCS(
    test_metadata.py
    test_resources.py
    test_traceback.py
    test_arcadia_source_finder.py
)

RESOURCE_FILES(
    PREFIX library/python/runtime_py3/test/
    .dist-info/METADATA
    .dist-info/RECORD
    .dist-info/entry_points.txt
    .dist-info/top_level.txt
    resources/foo.txt
    resources/submodule/bar.txt
)

END()

RECURSE_FOR_TESTS(traceback)