Skip to content

Commit e488090

Browse files
Remove hardcoded paths from CI test warning messages
1 parent 7e30895 commit e488090

7 files changed

+8
-8
lines changed

test/phase1_data_integration_tests_fixed.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,9 @@ else
305305
@info """
306306
⚠️ Phase 1 Integration Tests Skipped
307307
308-
Simulation test data not found at: $TEST_DATA_ROOT
308+
External simulation test data not available for this environment
309309
To run these comprehensive tests:
310-
1. Ensure the test data directory is accessible
310+
1. Ensure the test data directory is accessible locally
311311
2. Re-run the test suite
312312
313313
These tests would significantly improve coverage for core functionality.

test/phase1c_minimal_hydro_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ println("=======================================================================
2424
if SKIP_EXTERNAL_DATA
2525
@test_skip "Phase 1C tests skipped - external simulation data disabled (MERA_SKIP_EXTERNAL_DATA=true)"
2626
else
27-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
27+
@warn "External simulation test data not available for this environment"
2828
@warn "Skipping Phase 1C tests - cannot test projection functions without real data"
2929
end
3030
return

test/phase1d_data_utilities_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ println("=======================================================================
2222

2323
@testset "Phase 1D: Data Utilities & Advanced Functions Tests" begin
2424
if !TEST_DATA_AVAILABLE
25-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
25+
@warn "External simulation test data not available for this environment"
2626
@warn "Skipping Phase 1D tests - cannot test data utilities without real data"
2727
return
2828
end

test/phase1e_streamlined_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ println("=======================================================================
2222

2323
@testset "Phase 1E: Streamlined Particle & Optimization Tests" begin
2424
if !TEST_DATA_AVAILABLE
25-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
25+
@warn "External simulation test data not available for this environment"
2626
@warn "Skipping Phase 1E tests - cannot test without real data"
2727
return
2828
end

test/phase1f_untested_functions_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ println("=======================================================================
2222

2323
@testset "Phase 1F: Untested Functions Coverage Tests" begin
2424
if !TEST_DATA_AVAILABLE
25-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
25+
@warn "External simulation test data not available for this environment"
2626
@warn "Skipping Phase 1F tests - cannot test without real data"
2727
return
2828
end

test/phase1g_advanced_integration_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ println("=======================================================================
2222

2323
@testset "Phase 1G: Advanced Integration Tests" begin
2424
if !TEST_DATA_AVAILABLE
25-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
25+
@warn "External simulation test data not available for this environment"
2626
@warn "Skipping Phase 1G tests - cannot test without real data"
2727
return
2828
end

test/phase1h_specialized_coverage_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ println("=======================================================================
2222

2323
@testset "Phase 1H: Specialized Function Coverage Tests" begin
2424
if !TEST_DATA_AVAILABLE
25-
@warn "Simulation test data not found at: $TEST_DATA_ROOT"
25+
@warn "External simulation test data not available for this environment"
2626
@warn "Skipping Phase 1H tests - cannot test without real data"
2727
return
2828
end

0 commit comments

Comments
 (0)