diff --git a/scripts/testing/test_edge_advanced.sh b/scripts/testing/test_edge_advanced.sh index 1765419e..aef86068 100755 --- a/scripts/testing/test_edge_advanced.sh +++ b/scripts/testing/test_edge_advanced.sh @@ -75,7 +75,7 @@ log_info "Edge API URL: $EDGE_URL" # Island advanced operations run_test "Island leave" "aitbc edge island leave test_island_123" "true" -run_test "Island bridge" "aitbc edge island bridge --source island_a --target island_b" "true" +run_test "Island bridge" "aitbc edge island bridge island_b" "true" # GPU operations run_test "GPU list" "aitbc edge gpu list-gpus" "true" diff --git a/tests/conftest.py b/tests/conftest.py index 7181114f..43ea5b06 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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 / "cli")) # Import fixtures from dedicated fixture files # Common fixtures (environment setup, data generators)