init commit

This commit is contained in:
zyhe
2026-03-16 11:44:10 +00:00
commit 94384a93c9
552 changed files with 363038 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[tool.pytest.ini_options]
# Test configuration for better isolation
addopts = [
"--verbose",
"--tb=short",
"--strict-markers",
]
# Test discovery
testpaths = ["test"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
# Warnings
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
# Markers
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow tests",
"isaac_sim: Tests requiring Isaac Sim",
]