-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (20 loc) · 642 Bytes
/
pytest.ini
File metadata and controls
22 lines (20 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
# Pytest configuration for Blender addon testing
minversion = 6.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Custom markers for organizing tests
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
memory: marks tests that require large memory (deselect with '-m "not memory"')
integration: marks tests that test multiple components together
unit: marks tests that test individual functions
export_format: marks tests that test specific export formats