-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpytest.ini
More file actions
29 lines (28 loc) · 849 Bytes
/
pytest.ini
File metadata and controls
29 lines (28 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[pytest]
# Pytest configuration for MultiMind SDK
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--strict-markers
--tb=short
--cov=multimind
--cov-report=term-missing
--cov-report=html
--cov-fail-under=20
--asyncio-mode=auto
asyncio_default_test_loop_scope = function
asyncio_default_fixture_loop_scope = function
markers =
skip: marks tests as skipped (deselect with '-m "not skip"')
integration: marks tests as integration tests
unit: marks tests as unit tests
slow: marks tests as slow running
requires_gpu: marks tests that require GPU
requires_api_key: marks tests that require API keys
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning:transformers
ignore::pydantic.warnings.PydanticDeprecatedSince20