-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathmain.py
More file actions
95 lines (90 loc) · 5.68 KB
/
main.py
File metadata and controls
95 lines (90 loc) · 5.68 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
## Add here import statements for all files with tests
from tests.aggregate_tests.aggtst_base import * # noqa: F403
from tests.aggregate_tests.atest_run import run # noqa: F403
from tests.aggregate_tests.test_array import * # noqa: F403
from tests.aggregate_tests.test_arg_max import * # noqa: F403
from tests.aggregate_tests.test_arg_min import * # noqa: F403
from tests.aggregate_tests.test_avg import * # noqa: F403
from tests.aggregate_tests.test_binary_arg_max import * # noqa: F403
from tests.aggregate_tests.test_binary_arg_min import * # noqa: F403
from tests.aggregate_tests.test_binary_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_binary_count_col import * # noqa: F403
from tests.aggregate_tests.test_binary_count import * # noqa: F403
from tests.aggregate_tests.test_binary_max import * # noqa: F403
from tests.aggregate_tests.test_binary_min import * # noqa: F403
from tests.aggregate_tests.test_binary_every import * # noqa: F403
from tests.aggregate_tests.test_binary_some import * # noqa: F403
from tests.aggregate_tests.test_binary_tbl import * # noqa: F403
from tests.aggregate_tests.test_bit_and import * # noqa: F403
from tests.aggregate_tests.test_bit_or import * # noqa: F403
from tests.aggregate_tests.test_bit_xor import * # noqa: F403
from tests.aggregate_tests.test_count import * # noqa: F403
from tests.aggregate_tests.test_count_col import * # noqa: F403
from tests.aggregate_tests.test_decimal_arg_min import * # noqa: F403
from tests.aggregate_tests.test_decimal_arg_max import * # noqa: F403
from tests.aggregate_tests.test_decimal_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_decimal_avg import * # noqa: F403
from tests.aggregate_tests.test_decimal_count import * # noqa: F403
from tests.aggregate_tests.test_decimal_count_col import * # noqa: F403
from tests.aggregate_tests.test_decimal_max import * # noqa: F403
from tests.aggregate_tests.test_decimal_min import * # noqa: F403
from tests.aggregate_tests.test_decimal_every import * # noqa: F403
from tests.aggregate_tests.test_decimal_some import * # noqa: F403
from tests.aggregate_tests.test_decimal_sum import * # noqa: F403
from tests.aggregate_tests.test_decimal_stddev_samp import * # noqa: F403
from tests.aggregate_tests.test_decimal_stddev_pop import * # noqa: F403
from tests.aggregate_tests.test_decimal_table import * # noqa: F403
from tests.aggregate_tests.test_every import * # noqa: F403
from tests.aggregate_tests.test_int_table import * # noqa: F403
from tests.aggregate_tests.test_max import * # noqa: F403
from tests.aggregate_tests.test_min import * # noqa: F403
from tests.aggregate_tests.test_some import * # noqa: F403
from tests.aggregate_tests.test_stddev_pop import * # noqa: F403
from tests.aggregate_tests.test_stddev_samp import * # noqa: F403
from tests.aggregate_tests.test_varbinary_arg_min import * # noqa: F403
from tests.aggregate_tests.test_varbinary_arg_max import * # noqa: F403
from tests.aggregate_tests.test_varbinary_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_varbinary_count_col import * # noqa: F403
from tests.aggregate_tests.test_varbinary_count import * # noqa: F403
from tests.aggregate_tests.test_varbinary_max import * # noqa: F403
from tests.aggregate_tests.test_varbinary_min import * # noqa: F403
from tests.aggregate_tests.test_varbinary_every import * # noqa: F403
from tests.aggregate_tests.test_varbinary_some import * # noqa: F403
from tests.aggregate_tests.test_varbinary_tbl import * # noqa: F403
from tests.aggregate_tests.test_array_tbl import * # noqa: F403
from tests.aggregate_tests.test_array_arg_max import * # noqa: F403
from tests.aggregate_tests.test_array_arg_min import * # noqa: F403
from tests.aggregate_tests.test_array_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_array_count import * # noqa: F403
from tests.aggregate_tests.test_array_count_col import * # noqa: F403
from tests.aggregate_tests.test_array_every import * # noqa: F403
from tests.aggregate_tests.test_array_some import * # noqa: F403
from tests.aggregate_tests.test_array_max import * # noqa: F403
from tests.aggregate_tests.test_array_min import * # noqa: F403
from tests.aggregate_tests.test_map_tbl import * # noqa: F403
from tests.aggregate_tests.test_map_arg_max import * # noqa: F403
from tests.aggregate_tests.test_map_arg_min import * # noqa: F403
from tests.aggregate_tests.test_map_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_map_count import * # noqa: F403
from tests.aggregate_tests.test_map_count_col import * # noqa: F403
from tests.aggregate_tests.test_map_max import * # noqa: F403
from tests.aggregate_tests.test_map_min import * # noqa: F403
from tests.aggregate_tests.test_map_some import * # noqa: F403
from tests.aggregate_tests.test_map_every import * # noqa: F403
from tests.aggregate_tests.test_row_arg_max import * # noqa: F403
from tests.aggregate_tests.test_row_arg_min import * # noqa: F403
from tests.aggregate_tests.test_row_arr_agg import * # noqa: F403
from tests.aggregate_tests.test_row_count_col import * # noqa: F403
from tests.aggregate_tests.test_row_max import * # noqa: F403
from tests.aggregate_tests.test_row_min import * # noqa: F403
from tests.aggregate_tests.test_row_some import * # noqa: F403
from tests.aggregate_tests.test_row_every import * # noqa: F403
from tests.aggregate_tests.test_row_tbl import * # noqa: F403
from tests.aggregate_tests.test_empty_set import * # noqa: F403
from tests.aggregate_tests.test_float_max import * # noqa: F403
from tests.aggregate_tests.test_float_min import * # noqa: F403
from tests.aggregate_tests.test_float_tbl import * # noqa: F403
def main():
run("aggtst_", "aggregate_tests")
if __name__ == "__main__":
main()