Fix simulate.py error import and update edge island leave command syntax
Some checks failed
Coverage Phase 1 (70% Target) / test-coverage-70 (push) Has been cancelled
Coverage Phase 2 (85% Target) / test-coverage-85 (push) Has been cancelled
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

- simulate.py: Import error function from utils with fallback implementation
- test_edge_advanced.sh: Remove --island-id flag from island leave commands (use positional argument)
- conftest.py: Add tests directory to Python path for test discovery
This commit is contained in:
aitbc
2026-05-27 10:02:30 +02:00
parent ff2b8c2aed
commit 4fcbc0855e
3 changed files with 6 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ from pathlib import Path
# Configure Python path for test discovery
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root))
sys.path.insert(0, str(project_root / "tests"))
# Import fixtures from dedicated fixture files
# Common fixtures (environment setup, data generators)