forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
24 lines (24 loc) · 779 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python
cache: pip
python:
- "2.7"
env:
- GAE_ZIP=google_appengine_1.9.40.zip GAE_ROOT=${HOME}/google_appengine
cache: pip
services:
- docker
before_install:
- docker pull gcr.io/google_containers/kubekins-job-builder:5
install:
# Based on https://github.com/travis-ci/travis-ci/issues/738#issuecomment-11179888
- wget -nv https://storage.googleapis.com/appengine-sdks/featured/${GAE_ZIP}
- unzip -q ${GAE_ZIP} -d ${HOME}
- pip install -r gubernator/test_requirements.txt
- pip install -r jenkins/test-history/requirements.txt
script:
- ./verify/verify-boilerplate.py
- python -m unittest discover -s jenkins/test-history -p "*_test.py"
- ./jenkins/diff-job-config-patch.sh
- cd gubernator
- ./test.sh
- ./lint.sh