-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathmain.py
More file actions
28 lines (23 loc) · 1.33 KB
/
main.py
File metadata and controls
28 lines (23 loc) · 1.33 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
## 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.complex_type_tests.test_arr import * # noqa: F403
from tests.complex_type_tests.test_map import * # noqa: F403
from tests.complex_type_tests.test_row import * # noqa: F403
from tests.complex_type_tests.test_user_defined import * # noqa: F403
from tests.complex_type_tests.test_arr_of_arr import * # noqa: F403
from tests.complex_type_tests.test_arr_of_map import * # noqa: F403
from tests.complex_type_tests.test_arr_of_row import * # noqa: F403
from tests.complex_type_tests.test_arr_of_udt import * # noqa: F403
from tests.complex_type_tests.test_row_of_arr import * # noqa: F403
from tests.complex_type_tests.test_row_of_map import * # noqa: F403
from tests.complex_type_tests.test_row_of_row import * # noqa: F403
from tests.complex_type_tests.test_row_of_udt import * # noqa: F403
from tests.complex_type_tests.test_udt_of_arr import * # noqa: F403
from tests.complex_type_tests.test_udt_of_udt import * # noqa: F403
from tests.complex_type_tests.test_udt_of_row import * # noqa: F403
from tests.complex_type_tests.test_udt_of_udt import * # noqa: F403
def main():
run("cmpxtst_", "complex_type_tests")
if __name__ == "__main__":
main()