Skip to content

Commit 23805c9

Browse files
committed
fix: exclude test/go targets that depend on manual-export calculator components
Tests depending on calculator_component pull it in via //test/go/... Exclude these specific tests: - test_calculator_component_provides_info - test_calculator_component_valid_wasm - test_calculator_exports_verification - test_debug_component_provides_info - test_debug_component_valid_wasm - test_release_vs_debug_profiles Working tests (http_service, simple_test) remain enabled.
1 parent 4a45817 commit 23805c9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,12 @@ jobs:
129129
//providers/... \
130130
//test/go/... \
131131
-//test/go:go_integration_tests \
132+
-//test/go:test_calculator_component_provides_info \
133+
-//test/go:test_calculator_component_valid_wasm \
134+
-//test/go:test_calculator_exports_verification \
135+
-//test/go:test_debug_component_provides_info \
136+
-//test/go:test_debug_component_valid_wasm \
137+
-//test/go:test_release_vs_debug_profiles \
132138
//test/cpp/... \
133139
//test/unit/... \
134140
//test/integration/... \
@@ -233,6 +239,12 @@ jobs:
233239
//providers/... \
234240
//test/go/... \
235241
-//test/go:go_integration_tests \
242+
-//test/go:test_calculator_component_provides_info \
243+
-//test/go:test_calculator_component_valid_wasm \
244+
-//test/go:test_calculator_exports_verification \
245+
-//test/go:test_debug_component_provides_info \
246+
-//test/go:test_debug_component_valid_wasm \
247+
-//test/go:test_release_vs_debug_profiles \
236248
//test/cpp/... \
237249
//test/unit/... \
238250
//test/integration/... \

0 commit comments

Comments
 (0)