-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathmain.py
More file actions
54 lines (49 loc) · 2.06 KB
/
main.py
File metadata and controls
54 lines (49 loc) · 2.06 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
## Add here import statements for all files with tests
from tests.runtime_aggtest.aggtst_base import * # noqa: F403
from tests.runtime_aggtest.atest_run import run # noqa: F403
from test_arg_max import * # noqa: F403
from test_arg_min import * # noqa: F403
from test_avg import * # noqa: F403
from test_bit_and import * # noqa: F403
from test_bit_or import * # noqa: F403
from test_bit_xor import * # noqa: F403
from test_count import * # noqa: F403
from test_count_col import * # noqa: F403
from test_decimal_arg_min import * # noqa: F403
from test_decimal_arg_max import * # noqa: F403
from test_decimal_arr_agg import * # noqa: F403
from test_decimal_avg import * # noqa: F403
from test_decimal_count import * # noqa: F403
from test_decimal_count_col import * # noqa: F403
from test_decimal_max import * # noqa: F403
from test_decimal_min import * # noqa: F403
from test_decimal_every import * # noqa: F403
from test_decimal_some import * # noqa: F403
from test_decimal_sum import * # noqa: F403
from test_decimal_stddev_samp import * # noqa: F403
from test_decimal_stddev_pop import * # noqa: F403
from test_decimal_table import * # noqa: F403
from test_every import * # noqa: F403
from test_int_table import * # noqa: F403
from test_max import * # noqa: F403
from test_min import * # noqa: F403
from test_some import * # noqa: F403
from test_stddev_pop import * # noqa: F403
from test_stddev_samp import * # noqa: F403
from test_row_arg_max import * # noqa: F403
from test_row_arg_min import * # noqa: F403
from test_row_arr_agg import * # noqa: F403
from test_row_count_col import * # noqa: F403
from test_row_max import * # noqa: F403
from test_row_min import * # noqa: F403
from test_row_some import * # noqa: F403
from test_row_every import * # noqa: F403
from test_row_tbl import * # noqa: F403
from test_empty_set import * # noqa: F403
from test_float_max import * # noqa: F403
from test_float_min import * # noqa: F403
from test_float_tbl import * # noqa: F403
def main():
run("aggregate_tests", "aggtst_")
if __name__ == "__main__":
main()