- Add tests/README.md documenting test structure and usage - Move issue_*_test.py files to tests/regression/ (9 files) - Move loose test_*.py files to tests/unit/ (18 files) - tests/ root now contains only pytest infrastructure Addresses #166 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
139 B
Python
7 lines
139 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
import mcrfpy
|
|
print("Creating scene...")
|
|
scene = mcrfpy.Scene("test")
|
|
print("Scene created")
|
|
sys.exit(0)
|