forked from Kazuhito00/Image-Processing-Node-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
52 lines (44 loc) · 940 Bytes
/
pytest.ini
File metadata and controls
52 lines (44 loc) · 940 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
45
46
47
48
49
50
51
52
[pytest]
# Pytest configuration for CV Studio
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Add project root to Python path
pythonpath = .
# Output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
# Markers for categorizing tests
markers =
unit: Unit tests for individual components
integration: Integration tests for system components
slow: Tests that take a long time to run
gpu: Tests that require GPU
network: Tests that require network access
# Ignore patterns
norecursedirs =
.git
.tox
dist
build
*.egg
__pycache__
node_modules
# Coverage options (if using pytest-cov)
[coverage:run]
source = src,node
omit =
*/tests/*
*/test_*.py
*/__pycache__/*
*/node_modules/*
[coverage:report]
precision = 2
show_missing = True
skip_covered = False