mirror of
https://github.com/deepset-ai/haystack.git
synced 2026-01-05 19:47:45 +00:00
* Refactored code to unify vector_dim and embedding_dim parameter in DocumentStores * Unit test cases updated to use `embedding_dim` instead of `vector_dim` * Unit test case update to use embedding_dim instead of vector_dim * Add latest docstring and tutorial changes * Put usage of `vector_dim` param in same if-block as corresponding warning Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: bogdankostic <bogdankostic@web.de>
12 lines
727 B
INI
12 lines
727 B
INI
[pytest]
|
|
addopts = --strict-markers
|
|
markers =
|
|
slow: marks tests as slow (deselect with '-m "not slow"')
|
|
tika: marks tests which require tika container (deselect with '-m "not tika"')
|
|
elasticsearch: marks tests which require elasticsearch container (deselect with '-m "not elasticsearch"')
|
|
graphdb: marks tests which require graphdb container (deselect with '-m "not graphdb"')
|
|
generator: marks generator tests (deselect with '-m "not generator"')
|
|
pipeline: marks tests with pipeline
|
|
summarizer: marks summarizer tests
|
|
weaviate: marks tests that require weaviate container
|
|
embedding_dim: marks usage of document store with non-default embedding dimension (e.g @pytest.mark.embedding_dim(128)) |