-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (28 loc) · 857 Bytes
/
pytest.ini
File metadata and controls
35 lines (28 loc) · 857 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
[pytest]
# Pytest configuration for Boon-Tube-Daemon
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
# Coverage options (when using --cov)
# pytest --cov=boon_tube_daemon --cov-report=xml --cov-report=term
# Markers for organizing tests
markers =
unit: Unit tests (fast, no external dependencies)
integration: Integration tests (may require API keys/network)
slow: Tests that take significant time to run
youtube: Tests that require YouTube API
social: Tests that require social platform APIs
llm: Tests that require LLM/AI APIs
# Ignore patterns
norecursedirs = .git .github docker docs scripts images
# Minimum Python version
minversion = 3.10