File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ function run_canary_tests() {
115
115
echo " skipping Windows tests"
116
116
fi
117
117
(CGO_ENABLED=0 ginkgo --no-color --focus=" CANARY" $EXTRA_GINKGO_FLAGS -v --timeout 5m $GINKGO_TEST_BUILD_DIR /webhook.test -- --cluster-kubeconfig=$KUBE_CONFIG_PATH --cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id=$VPC_ID )
118
+ (CGO_ENABLED=0 ginkgo --no-color --focus=" CANARY" $EXTRA_GINKGO_FLAGS -v --timeout 10m $GINKGO_TEST_BUILD_DIR /cninode.test -- --cluster-kubeconfig=$KUBE_CONFIG_PATH --cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id=$VPC_ID )
118
119
}
119
120
120
121
echo " Starting the ginkgo test suite"
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ function run_integration_tests(){
47
47
echo " skipping Windows tests"
48
48
fi
49
49
(cd $INTEGRATION_TEST_DIR /webhook && CGO_ENABLED=0 ginkgo --skip=LOCAL $EXTRA_GINKGO_FLAGS -v -timeout=5m -- -cluster-kubeconfig=$KUBE_CONFIG_PATH -cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id $VPC_ID ) || TEST_RESULT=fail
50
+ (cd $INTEGRATION_TEST_DIR /cninode && CGO_ENABLED=0 ginkgo --skip=LOCAL $EXTRA_GINKGO_FLAGS -v -timeout=10m -- -cluster-kubeconfig=$KUBE_CONFIG_PATH -cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id $VPC_ID ) || TEST_RESULT=fail
50
51
51
52
if [[ " $TEST_RESULT " == fail ]]; then
52
53
exit 1
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
30
30
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
31
31
)
32
32
33
- var _ = Describe ("CNINode test" , func () {
33
+ var _ = Describe ("[CANARY] CNINode test" , func () {
34
34
Describe ("CNINode count verification on adding or removing node" , func () {
35
35
var oldMinSize int64
36
36
var oldMaxSize int64
You can’t perform that action at this time.
0 commit comments