Skip to content

Commit

Permalink
fix typo and increase test timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Turrado <[email protected]>
  • Loading branch information
Jorge Turrado committed Jul 19, 2022
1 parent 54718d5 commit 29a7c41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/run-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function run_tests {
# TODO - Remove condition after all tests have been migrated to Go.
if [[ $test_case == *_test.go ]]
then
go test -v -tags e2e $test_case > "${test_case}.log" 2>&1 &
go test -v -tags e2e -timeout 15m $test_case > "${test_case}.log" 2>&1 &
else
./node_modules/.bin/ava $test_case > "${test_case}.log" 2>&1 &
fi
Expand Down Expand Up @@ -75,7 +75,7 @@ function run_tests {
# TODO - Remove condition after all tests have been migrated to Go.
if [[ $test_case == *_test.go ]]
then
go test -v -tags e2e $test_case > "${test_case}.retry.log" 2>&1 &
go test -v -tags e2e -timeout 15m $test_case > "${test_case}.retry.log" 2>&1 &
else
./node_modules/.bin/ava $test_case > "${test_case}.retry.log" 2>&1 &
fi
Expand Down
4 changes: 2 additions & 2 deletions tests/scalers_go/azure_pipelines/azure_pipelines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ spec:
image: ghcr.io/kedacore/tests-azure-pipelines-agent:b3a02cc
env:
- name: AZP_URL
value: {{.Url}}
value: {{.URL}}
- name: AZP_TOKEN
valueFrom:
secretKeyRef:
Expand Down Expand Up @@ -134,7 +134,7 @@ spec:
organizationURLFromEnv: "AZP_URL"
personalAccessTokenFromEnv: "AZP_TOKEN"
activationTargetPipelinesQueueLength: "1"
poolID: "{{.PoolId}}"
poolID: "{{.PoolID}}"
`
poolNamescaledObjectTemplate = `
apiVersion: keda.sh/v1alpha1
Expand Down

0 comments on commit 29a7c41

Please sign in to comment.