forked from laksjdjf/LoRA-Merger-ComfyUI
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpytest.ini
More file actions
44 lines (37 loc) · 889 Bytes
/
pytest.ini
File metadata and controls
44 lines (37 loc) · 889 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
39
40
41
42
43
44
[pytest]
# Pytest configuration for LoRA Power-Merger tests
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--color=yes
--import-mode=importlib
# Markers for organizing tests
markers =
unit: Unit tests for individual functions
integration: Integration tests combining multiple components
slow: Tests that take longer to run
edge_case: Edge case and boundary condition tests
# Test paths
testpaths = tests
# Minimum Python version
minversion = 3.8
# Coverage options (if using pytest-cov)
# Uncomment these if you install pytest-cov
# addopts = --cov=. --cov-report=html --cov-report=term
# Ignore patterns
norecursedirs =
.git
.idea
__pycache__
deprecated
experimental
js
fonts
src