210bea83d4
* Add callable mappings feature * Implement mgps.validate (void procedure) * Make '_' a valid variable name
36 lines
878 B
YAML
36 lines
878 B
YAML
args: &args
|
|
- "--bolt-port"
|
|
- "7687"
|
|
- "--log-level"
|
|
- "TRACE"
|
|
- "--query-callable-mappings-path"
|
|
- "graphql/callable_alias_mapping.json"
|
|
|
|
in_memory_cluster: &in_memory_cluster
|
|
cluster:
|
|
main:
|
|
args: *args
|
|
log_file: "graphql-e2e.log"
|
|
setup_queries: []
|
|
validation_queries: []
|
|
|
|
disk_cluster: &disk_cluster
|
|
cluster:
|
|
main:
|
|
args: *args
|
|
log_file: "graphql-e2e.log"
|
|
setup_queries: ["STORAGE MODE ON_DISK_TRANSACTIONAL"]
|
|
validation_queries: []
|
|
|
|
workloads:
|
|
- name: "GraphQL crud"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
proc: "tests/e2e/graphql/temporary_procedures/"
|
|
args: ["graphql/graphql_crud.py"]
|
|
<<: *in_memory_cluster
|
|
- name: "Disk GraphQL crud"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
proc: "tests/e2e/graphql/temporary_procedures/"
|
|
args: ["graphql/graphql_crud.py"]
|
|
<<: *disk_cluster
|