memgraph/tests/e2e/text_search/workloads.yaml

34 lines
1010 B
YAML
Raw Normal View History

text_search_cluster: &text_search_cluster
cluster:
main:
args:
[
"--bolt-port",
"7687",
"--log-level=TRACE",
"--experimental-enabled=text-search",
]
log_file: "text_search.log"
setup_queries: []
validation_queries: []
text_search_disabled_cluster: &text_search_disabled_cluster
cluster:
main:
args: ["--bolt-port", "7687", "--log-level=TRACE"]
log_file: "text_search.log"
setup_queries: []
validation_queries: []
workloads:
- name: "Test behavior of text search in Memgraph"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/text_search/query_modules/"
args: ["text_search/test_text_search.py"]
<<: *text_search_cluster
- name: "Test behavior of text search in Memgraph when disabled"
binary: "tests/e2e/pytest_runner.sh"
proc: "tests/e2e/text_search/query_modules/"
args: ["text_search/test_text_search_disabled.py"]
<<: *text_search_disabled_cluster