Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
runtime: ["node", "go", "quarkus", "springboot", "typescript", "rust"]
runtime: ["python", "node", "go", "quarkus", "springboot", "typescript", "rust"]
runs-on: ubuntu-latest
steps:
- name: Set Environment Variables
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/scenario_runtime-http_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var runtimeSupportMap = map[string][]string{
"node": {"pack", "s2i"},
"go": {"pack", "s2i"},
"rust": {"pack"},
"python": {"pack", "s2i"},
"python": {"s2i"},
"quarkus": {"pack", "s2i"},
"springboot": {"pack"},
"typescript": {"pack", "s2i"},
Expand Down Expand Up @@ -121,8 +121,8 @@ var httpFuncValidatorMap = map[string]FuncResponsivenessValidator{
expects: "message=hello",
},
"python": {
urlMask: "%s?message=hello",
expects: `{"message": "hello"}`,
urlMask: "%s",
expects: `OK`,
},
"quarkus": {
urlMask: "%s?message=hello",
Expand Down
Loading