blob: 696bce02479eb32fa899c3b0c151c04f99d61ac9 (
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
40
41
42
43
44
45
46
47
48
49
|
IF (NOT OPENSOURCE)
PY3TEST()
IF(ORIGINAL)
TEST_SRCS(
# test_postgres_original.py
)
DATA(
arcadia/yql/essentials/tests/postgresql/original/cases
)
ELSE()
TEST_SRCS(
# test_postgres.py
)
DATA(
arcadia/yql/essentials/tests/postgresql/cases
)
ENDIF()
DATA(
arcadia/yql/essentials/tests/postgresql/patches
)
SIZE(MEDIUM)
TIMEOUT(600)
FORK_TESTS()
FORK_SUBTESTS()
SPLIT_FACTOR(10)
DEPENDS(
yql/essentials/tests/postgresql/common
yql/essentials/tools/pgrun
yql/essentials/tools/pg-make-test
yql/essentials/udfs/common/set
yql/essentials/udfs/common/re2
)
END()
ENDIF()
|