123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- """Constants variables for test module."""
- import os
- task_without_example = {
- "sql",
- "http",
- "sub_process",
- "python",
- "procedure",
- }
- ignore_exec_examples = {
- "task_datax_example",
- "task_flink_example",
- "task_map_reduce_example",
- "task_spark_example",
- }
- ENV_PYDS_HOME = "PYDS_HOME"
- DEV_MODE = str(
- os.environ.get("PY_DOLPHINSCHEDULER_DEV_MODE", False)
- ).strip().lower() in {"true", "t", "1"}
|