computer-use-sandbox / pytest.ini
iluksic's picture
Created Computer Use Agent
2baba5d
Raw
History Blame Contribute Delete
437 Bytes
[pytest]
# Pytest configuration for Computer Use Agent tests
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Test paths
testpaths = tests
# Output options
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
# Markers
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
# Minimum Python version
minversion = 3.8