ttzzs's picture
feat: Add Copy to Clipboard with Interactive Preview to Excel Add-in
ccf0441 verified
raw
history blame contribute delete
431 Bytes
[pytest]
# Pytest configuration
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
# Coverage options (cuando se use pytest-cov)
# addopts += --cov=app --cov-report=html --cov-report=term-missing
# Markers
markers =
unit: Unit tests
integration: Integration tests
slow: Slow tests