forked from HypothesisWorks/hypothesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (55 loc) · 1.28 KB
/
.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
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
language: c
sudo: false
env: PYTHONDONTWRITEBYTECODE=x
os:
- linux
branches:
only:
- "master"
cache:
apt: true
directories:
- $HOME/.runtimes
- $HOME/.venv
- $HOME/.cache/pip
- $HOME/wheelhouse
env:
global:
- BUILD_RUNTIMES=$HOME/.runtimes
matrix:
# Core tests that we want to run first.
- TASK=documentation
- TASK=lint
- TASK=check-format
- TASK=check-coverage
- TASK=check-pypy
- TASK=check-py27
- TASK=check-py36
- TASK=check-quality
# Less important tests that will probably
# pass whenever the above do but are still
# worth testing.
- TASK=check-unicode
- TASK=check-ancient-pip
- TASK=check-py273
- TASK=check-py34
- TASK=check-py35
- TASK=check-nose
- TASK=check-pytest28
- TASK=check-fakefactory052
- TASK=check-fakefactory053
- TASK=check-fakefactory060
- TASK=check-django17
- TASK=check-django18
- TASK=check-django19
- TASK=check-django110
script:
- make $TASK
matrix:
fast_finish: true
notifications:
email:
recipients:
on_success: never
on_failure: change