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
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ sudo: required

language: python

python: "2.7"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why don't we specify all the versions we support? I believe we support 2.7, 3.5, and 3.6.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will actually create many builds. Just 2.7 is fine for now.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Simon is right. Currently the Travis is used only for the Kubernetes integration tests.


env:
matrix:
# This will make sure .minikube config resides in current user folder
Expand Down
6 changes: 3 additions & 3 deletions bin/run_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ retry_test() {

# if the test test succeed, debug info will not get printed
# mainly used to debug container being evicted
retry_test python kubernetes_integration_test.py
retry_test python kubernetes_multi_frontend.py
retry_test python kubernetes_namespace.py
retry_test python kubernetes_integration_test.py; sleep 30
retry_test python kubernetes_multi_frontend.py; sleep 30
retry_test python kubernetes_namespace.py; sleep 30
retry_test python multi_tenancy_test.py --kubernetes

# TODO: disabled for now, will re-enable after RBAC PR
Expand Down