memgraph/tests/e2e/init_file_flags/workloads.yaml
Josipmrden df95775222
Fix init file startup in community edition (#974)
* Fix init file startup in community edition

* Add possibility to build binary without MG_ENTERPRISE

* Added trace spdlog for when init file is not present

* Add gqlalchemy and unit tests

* Add init data files which correspond to the right directory by the github actions
2023-06-20 17:54:50 +02:00

33 lines
875 B
YAML

init_file_cluster: &init_file_cluster
cluster:
main:
args: [
"--bolt-port", "7687",
"--log-level=TRACE",
"--init-file=init_file_flags/init_file.cypherl"
]
log_file: "init-file-flags-e2e.log"
validation_queries: []
init_data_file_cluster: &init_data_file_cluster
cluster:
main:
args: [
"--bolt-port", "7687",
"--log-level=TRACE",
"--init-data-file=init_file_flags/init_file.cypherl"
]
log_file: "init-data-file-flags-e2e.log"
validation_queries: []
workloads:
- name: "Init file flags"
binary: "tests/e2e/pytest_runner.sh"
args: ["init_file_flags/init_file_setup.py"]
<<: *init_file_cluster
- name: "Init data file flags"
binary: "tests/e2e/pytest_runner.sh"
args: ["init_file_flags/init_data_file_setup.py"]
<<: *init_data_file_cluster