Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] Temporarily bypass TFX unittest #3135

Merged
merged 4 commits into from
Feb 20, 2020
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
11 changes: 6 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,12 @@ matrix:
- set +e
- set +x
# Two KFP-related unittests
- cd $TRAVIS_BUILD_DIR/tfx/tfx/orchestration/kubeflow
- python3 kubeflow_dag_runner_test.py
- cd $TRAVIS_BUILD_DIR/tfx/tfx/examples/chicago_taxi_pipeline
- python3 taxi_pipeline_kubeflow_gcp_test.py
- python3 taxi_pipeline_kubeflow_local_test.py
# TODO(numerology) fix this after TFX dependency is fixed.
# - cd $TRAVIS_BUILD_DIR/tfx/tfx/orchestration/kubeflow
# - python3 kubeflow_dag_runner_test.py
# - cd $TRAVIS_BUILD_DIR/tfx/tfx/examples/chicago_taxi_pipeline
# - python3 taxi_pipeline_kubeflow_gcp_test.py
# - python3 taxi_pipeline_kubeflow_local_test.py

# Visualization test
- cd $TRAVIS_BUILD_DIR/backend/src/apiserver/visualization
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ FROM python:3.5 as compiler
RUN apt-get update -y && \
apt-get install --no-install-recommends -y -q default-jdk python3-setuptools python3-dev
RUN wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py
RUN python3 -m pip install tfx==0.21.0
RUN python3 -m pip install tfx==0.21.0 "tensorflow-data-validation<0.21.2"

WORKDIR /go/src/github.com/kubeflow/pipelines
COPY sdk sdk
Expand Down
2 changes: 1 addition & 1 deletion test/sample-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN pip3 install google-api-python-client==1.7.0
RUN pip3 install google-cloud-storage==1.17.0
RUN pip3 install fire==0.2.1
RUN pip3 install yamale==2.0
RUN pip3 install tfx==0.21.0
RUN pip3 install tfx==0.21.0 "tensorflow-data-validation<0.21.2"

# Install python client, including DSL compiler.
COPY ./sdk/python /sdk/python
Expand Down