44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
template_cluster: &template_cluster
|
|
cluster:
|
|
main:
|
|
args: ["--bolt-port", "7687", "--log-level=TRACE"]
|
|
log_file: "distributed-queries-e2e.log"
|
|
setup_queries: []
|
|
validation_queries: []
|
|
|
|
workloads:
|
|
- name: "Distributed queries"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/distributed_queries.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Distributed expand one"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/distributed_expand_one.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Distributed unwind collect"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/unwind_collect.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Distributed order by and limit"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/order_by_and_limit.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Distributed distinct"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/distinct.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Distributed optional match"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/optional_match.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "Awesome memgraph functions"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["distributed_queries/awesome_memgraph_functions.py"]
|
|
<<: *template_cluster
|