-
Notifications
You must be signed in to change notification settings - Fork 57
/
.travis.yml
65 lines (58 loc) · 1.36 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
sudo: false
language: python
cache:
directories:
- $HOME/.cache/pip
env:
global:
- PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: pypy
env: TOXENV=pypy
- python: 2.7
env: TOXENV=docs
- python: 2.7
env: TOXENV=docs-spellcheck
addons:
apt:
packages:
- libenchant-dev
- python: 2.7
env: TOXENV=docs-linkcheck
- python: 2.7
env: TOXENV=lint
- language: generic
os: osx
env: TOXENV=py27
- language: generic
os: osx
env: TOXENV=pypy
- language: c
os: osx
env: MACAPP_ENV=system
allow_failures:
- env: TOXENV=docs-linkcheck
install:
- travis_retry ./.travis/install.sh
script:
- ./.travis/run.sh
after_success:
- "source ~/.venv/bin/activate && coverage combine && codecov"
notifications:
irc:
channels: "chat.freenode.net##mimic"
template:
- "%{repository}@%{branch} - %{author}: %{message} (%{build_url})"
use_notice: true
branches:
only:
- master
- gh-pages