forked from feldera/feldera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
34 lines (29 loc) · 1.22 KB
/
Copy pathmain.py
File metadata and controls
34 lines (29 loc) · 1.22 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
## 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_arr import * # noqa: F403
from test_map import * # noqa: F403
from test_row import * # noqa: F403
from test_user_defined import * # noqa: F403
from test_arr_of_arr import * # noqa: F403
from test_arr_of_map import * # noqa: F403
from test_arr_of_row import * # noqa: F403
from test_arr_of_udt import * # noqa: F403
from test_row_of_arr import * # noqa: F403
from test_row_of_map import * # noqa: F403
from test_row_of_row import * # noqa: F403
from test_row_of_udt import * # noqa: F403
from test_udt_of_arr import * # noqa: F403
from test_udt_of_udt import * # noqa: F403
from test_udt_of_row import * # noqa: F403
from test_arr_arr_unnest import * # noqa: F403
from test_arr_map_unnest import * # noqa: F403
from test_arr_row_unnest import * # noqa: F403
from test_arr_udt_unnest import * # noqa: F403
from test_arr_unnest import * # noqa: F403
from test_row_arr_unnest import * # noqa: F403
from test_udt_arr_unnest import * # noqa: F403
def main():
run("complex_type_tests", "cmpxtst_")
if __name__ == "__main__":
main()