mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-02 02:39:51 +00:00
* Integrate LFQA with Haystack * Integrate LFQA with Haystack - unit tests * Properly initialize conftest default value for vector_dim * Update PR after inital feedback * Fix conftest.py import * Seq2SeqGenerator uses Callables instead of subclasses for custom model input * Update docstring * Fix Callable use * Add LFQA tutorials * Improve type error reporting for invalid input converter Callable * Generate docstrings * Format comments in tutorial script * Generate tutorial md * Add usage page Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai> Co-authored-by: brandenchan <brandenchan@icloud.com>
13 lines
722 B
INI
13 lines
722 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
|
|
vector_dim: marks usage of document store with non-default embedding dimension (e.g @pytest.mark.vector_dim(128))
|