-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest_simple.ini
More file actions
38 lines (38 loc) · 974 Bytes
/
pytest_simple.ini
File metadata and controls
38 lines (38 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
[tool:pytest]
minversion = 6.0
addopts = -ra -q --strict-markers --strict-config --json-report --json-report-file=reports/test_results.json
testpaths = [
src/tests,
]
python_files = [
test_*.py,
*_test.py,
]
python_classes = [
Test*,
]
python_functions = [
test_*
]
markers = [
unit: Unit tests
integration: Integration tests
performance: Performance tests
semantic_languages: Semantic language tests
xml_transformation: XML transformation tests
quantum_engine: Quantum engine tests
blockchain: Blockchain tests
ai_processing: AI processing tests
droid_testing: Droid-specific tests
baml: BAML language tests
pareto_lang: Pareto-Lang tests
]
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
timeout = 300
timeout_method = thread