2023-08-30 19:42:11 +08:00
|
|
|
args: &args
|
|
|
|
- "--bolt-port"
|
|
|
|
- "7687"
|
|
|
|
- "--log-level=TRACE"
|
|
|
|
|
|
|
|
in_memory_cluster: &in_memory_cluster
|
2022-04-21 21:45:31 +08:00
|
|
|
cluster:
|
|
|
|
main:
|
2023-08-30 19:42:11 +08:00
|
|
|
args: *args
|
2022-04-21 21:45:31 +08:00
|
|
|
log_file: "magic-functions-e2e.log"
|
|
|
|
setup_queries: []
|
|
|
|
validation_queries: []
|
2023-08-30 19:42:11 +08:00
|
|
|
|
2023-06-29 17:44:55 +08:00
|
|
|
disk_cluster: &disk_cluster
|
|
|
|
cluster:
|
|
|
|
main:
|
2023-08-30 19:42:11 +08:00
|
|
|
args: *args
|
2023-06-29 17:44:55 +08:00
|
|
|
log_file: "magic-functions-e2e.log"
|
|
|
|
setup_queries: ["STORAGE MODE ON_DISK_TRANSACTIONAL"]
|
|
|
|
validation_queries: []
|
2022-04-21 21:45:31 +08:00
|
|
|
|
|
|
|
workloads:
|
|
|
|
- name: "Magic functions runner"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/magic_functions/functions/"
|
|
|
|
args: ["magic_functions/function_example.py"]
|
2023-08-30 19:42:11 +08:00
|
|
|
<<: *in_memory_cluster
|
2023-06-29 17:44:55 +08:00
|
|
|
|
|
|
|
- name: "Magic functions runner for disk storage"
|
|
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
|
|
proc: "tests/e2e/magic_functions/functions/"
|
|
|
|
args: ["magic_functions/function_example.py"]
|
|
|
|
<<: *disk_cluster
|