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
22 lines (16 loc) · 685 Bytes
/
Copy pathmain.py
File metadata and controls
22 lines (16 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## 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_agg import * # noqa: F403
from test_arr_map_type_fn import * # noqa: F403
from test_str_bin_type_fn import * # noqa: F403
from test_str_unicode_fn import * # noqa: F403
from test_check_negative_tests import * # noqa: F403
from test_cmp_operators import * # noqa: F403
from test_cast import * # noqa: F403
from test_grammar_tbl_fn import * # noqa: F403
from test_illegal_tbl import * # noqa: F403
def main():
run("illarg_tests", "illarg_")
if __name__ == "__main__":
main()