Spaces:
Runtime error
Runtime error
| [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 | |