26 lines
679 B
YAML
26 lines
679 B
YAML
template_cluster: &template_cluster
|
|
cluster:
|
|
main:
|
|
args:
|
|
[
|
|
"--log-level=TRACE",
|
|
"--storage-properties-on-edges=True",
|
|
"--storage-snapshot-interval-sec",
|
|
"300",
|
|
"--storage-wal-enabled=True",
|
|
]
|
|
log_file: "configuration-check-e2e.log"
|
|
setup_queries: []
|
|
validation_queries: []
|
|
|
|
workloads:
|
|
- name: "Configuration check"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["configuration/configuration_check.py"]
|
|
<<: *template_cluster
|
|
|
|
- name: "SHOW STORAGE INFO check"
|
|
binary: "tests/e2e/pytest_runner.sh"
|
|
args: ["configuration/storage_info.py"]
|
|
<<: *template_cluster
|