File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ presubmits:
143143
144144 - name : test-end-to-end
145145 decorate : true
146- always : true
146+ always_run : true
147147 spec :
148148 containers :
149149 - image : gcr.io/kf-feast/feast-ci:latest
@@ -167,15 +167,15 @@ presubmits:
167167
168168 - name : test-end-to-end-gcp
169169 decorate : true
170- always : true
170+ always_run : true
171171 spec :
172172 containers :
173173 - image : gcr.io/kf-feast/feast-ci:latest
174174 command : [ "infra/scripts/test-end-to-end-gcp.sh" ]
175- resources :
176- requests :
177- cpu : " 6"
178- memory : " 6144Mi"
175+ resources :
176+ requests :
177+ cpu : " 6"
178+ memory : " 6144Mi"
179179 env :
180180 - name : GOOGLE_APPLICATION_CREDENTIALS
181181 value : /etc/gcloud/service-account.json
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
13export DISABLE_SERVICE_FIXTURES=1
24
35apt-get update && apt-get install -y redis-server postgresql libpq-dev
@@ -9,6 +11,6 @@ make install-python
911python -m pip install -qr tests/requirements.txt
1012
1113su -p postgres -c " PATH=$PATH HOME=/tmp pytest tests/e2e/ \
12- --feast-version develop --env=gcloud --dataproc-cluster-name feast-e2e \
13- --dataproc-project kf-feast --dataproc-region us-central1 \
14- --redis-url 10.128.0.105:6379 --redis-cluster --kafka-brokers 10.128.0.103:9094"
14+ --feast-version develop --env=gcloud --dataproc-cluster-name feast-e2e \
15+ --dataproc-project kf-feast --dataproc-region us-central1 \
16+ --redis-url 10.128.0.105:6379 --redis-cluster --kafka-brokers 10.128.0.103:9094"
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
13apt-get update && apt-get install -y redis-server postgresql libpq-dev
24
35make build-java-no-tests REVISION=develop
You can’t perform that action at this time.
0 commit comments