memgraph/tests/e2e/distributed_queries/workloads.yaml

34 lines
1013 B
YAML
Raw Normal View History

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 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