-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathmain.py
More file actions
27 lines (20 loc) · 996 Bytes
/
main.py
File metadata and controls
27 lines (20 loc) · 996 Bytes
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
## 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_tables import * # noqa: F403
from test_date import * # noqa: F403
from test_time import * # noqa: F403
from test_timestamp import * # noqa: F403
from test_interval import * # noqa: F403
# Column naming conventions for the views:
# ytm = YEAR to MONTH, ytm_str = YEAR to MONTH converted to string
# dth = DAY TO HOUR, dth_str = DAY TO HOUR converted to string
# dtm = DAY TO MINUTE, dtm_str = DAY TO MINUTE converted to string
# dts = DAY to SECOND, dts_str = DAY to SECOND converted to string
# htm = HOUR to MINUTE, htm_str = HOUR to MINUTE converted to string
# hts = HOUR to SECOND, hts_str = HOUR to SECOND converted to string
# mts = MINUTE to SECOND, mts_str = MINUTE to SECOND converted to string
def main():
run("arithmetic_tests", "arithtst_")
if __name__ == "__main__":
main()