From 2a12725bfb30607a99b70d4ebdf88f99957f8021 Mon Sep 17 00:00:00 2001 From: Jiayu Liu Date: Wed, 28 Feb 2018 12:14:03 +0800 Subject: [PATCH] Enable travis and do configurations (#48) this is cherry-picked from #36 so that it can unblock others. --- .travis.yml | 12 ++++++++++++ images/Dockerfile | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..34a023e35 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - "3.6" + +install: + - pip install -U pip wheel + - pip install pipenv pylint + - pipenv install --system + +script: + - pylint py/**/*.py diff --git a/images/Dockerfile b/images/Dockerfile index d969ef900..2fc133e7b 100644 --- a/images/Dockerfile +++ b/images/Dockerfile @@ -116,4 +116,4 @@ ENV USER root # which contains shared scripts. ENV PYTHONPATH /src/kubeflow/testing/py -ENTRYPOINT ["/usr/local/bin/run_workflows.sh"] \ No newline at end of file +ENTRYPOINT ["/usr/local/bin/run_workflows.sh"]