You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove -run filter that doesn't work with Ginkgo tests
- Ginkgo tests don't use Go's standard -run flag for filtering
- All tests are under TestE2ETestcases function, not separate Test functions
- Removed -run "Keyword Routing" from test execution
- Removed -run "Keyword Routing" from race detector
- Tests now run successfully and achieve 87.1% coverage of keyword_classifier.go
Signed-off-by: Senan Zedan <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/unit-test-e2e-testcases.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ jobs:
73
73
run: |
74
74
cd e2e-tests/testcases
75
75
echo "Running keyword routing tests..."
76
-
go test -v -run "Keyword Routing" -coverprofile=coverage-keyword.out -covermode=atomic -coverpkg=github.com/vllm-project/semantic-router/src/semantic-router/pkg/classification
76
+
go test -v -coverprofile=coverage-keyword.out -covermode=atomic -coverpkg=github.com/vllm-project/semantic-router/src/semantic-router/pkg/classification
0 commit comments