- Add core agent architecture with Command + Skill pattern - Implement Claude API integration for content analysis - Add Obsidian REST API integration for vault operations - Create conversational interface (v2.0) with natural language processing - Add comprehensive configuration management and validation - Include project documentation and developer guides - Set up testing framework with unit, integration, and property tests - Add Kiro specs for Claude API configuration and code quality improvements - Configure project steering files for development guidelines
20 lines
463 B
INI
20 lines
463 B
INI
[tool:pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py *_test.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
--cov=.
|
|
--cov-report=term-missing
|
|
--cov-report=html:htmlcov
|
|
--cov-exclude=tests/*
|
|
--cov-exclude=__pycache__/*
|
|
--cov-exclude=.kiro/*
|
|
asyncio_mode = auto
|
|
markers =
|
|
unit: Unit tests
|
|
integration: Integration tests
|
|
property: Property-based tests
|
|
slow: Slow running tests |