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
70 changes: 0 additions & 70 deletions .prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,48 +209,6 @@ presubmits:
branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch
decorate: true
always_run: true
spec:
volumes:
- name: service-account
secret:
secretName: feast-service-account
containers:
- image: maven:3.6-jdk-11
command: ["infra/scripts/test-end-to-end-batch.sh"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account
mountPath: "/etc/service-account"
skip_branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-fs-update
decorate: true
always_run: false
spec:
volumes:
- name: service-account
secret:
secretName: feast-service-account
containers:
- image: maven:3.6-jdk-11
command: ["infra/scripts/test-end-to-end-batch.sh", "-m", "fs_update"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account
mountPath: "/etc/service-account"
skip_branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-java-8
Comment thread
khorshuheng marked this conversation as resolved.
Outdated
decorate: true
always_run: true
Expand All @@ -272,34 +230,6 @@ presubmits:
branches:
- ^v0\.(3|4)-branch$

- name: test-end-to-end-batch-dataflow
decorate: true
always_run: true
spec:
volumes:
- name: service-account-df
secret:
secretName: feast-e2e-service-account
- name: docker-socket
hostPath:
path: /var/run/docker.sock
containers:
- image: google/cloud-sdk:302.0.0
command: ["infra/scripts/test-end-to-end-batch-dataflow.sh"]
resources:
requests:
cpu: "6"
memory: "6144Mi"
volumeMounts:
- name: service-account-df
mountPath: "/etc/service-account-df"
- name: docker-socket
mountPath: /var/run/docker.sock
securityContext:
privileged: true
skip_branches:
- ^v0\.(3|4)-branch$

postsubmits:
feast-dev/feast:
- name: publish-python-sdk
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ lint-python:
cd ${ROOT_DIR}/sdk/python; flake8 feast/ tests/
cd ${ROOT_DIR}/sdk/python; black --check feast tests

cd ${ROOT_DIR}/tests/e2e; mypy bq/ redis/
cd ${ROOT_DIR}/tests/e2e; mypy redis/
cd ${ROOT_DIR}/tests/e2e; isort . --check-only
cd ${ROOT_DIR}/tests/e2e; flake8 .
cd ${ROOT_DIR}/tests/e2e; black --check .
Expand Down