[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