-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy path.travis.yml
More file actions
49 lines (38 loc) · 838 Bytes
/
.travis.yml
File metadata and controls
49 lines (38 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright ClusterHQ Inc. See LICENSE file for details.
#
# Run a subset of Flocker tests on Travis-CI.
sudo: false
dist: trusty
language: python
python: 2.7
cache:
pip: true
apt: true
install:
- pip install tox awscli
env:
- FLOCKER_BUILDER=test-admin
- FLOCKER_BUILDER=test-benchmark
- FLOCKER_BUILDER=test-flocker
- FLOCKER_BUILDER=lint
- FLOCKER_BUILDER=docs-lint
- FLOCKER_BUILDER=docs-spelling
- FLOCKER_BUILDER=docs-linkcheck
- FLOCKER_BUILDER=docs-html
matrix:
allow_failures:
- env: FLOCKER_BUILDER=docs-linkcheck
script:
- .travis/script
after_script:
- .travis/after_script
addons:
apt:
packages:
- python-enchant
# Only run tests on push on a few branches.
# Test on PR should be execute for all branches and forks.
branches:
only:
- master
- /^release\/flocker-.*$/