forked from circus-tent/chaussette
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
42 lines (42 loc) · 816 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: python
python:
- "3.5"
sudo: false
matrix:
- python: 2.7
env: TOX_ENV=py27
- python: 3.5
env: TOX_ENV=py35
- python: 3.5
env: TOX_ENV=flake8
- python: 3.5
env: TOX_ENV=docs
# power job
- python: 2.7
env: TOX_ENV=py27
arch: ppc64le
- python: 3.5
env: TOX_ENV=py35
arch: ppc64le
- python: 3.5
env: TOX_ENV=flake8
arch: ppc64le
- python: 3.5
env: TOX_ENV=docs
arch: ppc64le
addons:
apt:
packages:
- libev-dev
- libevent-dev
install:
- python setup.py develop
- pip install tox
script: tox
after_success:
- pip install coveralls
- coveralls
notifications:
email: [email protected]
irc: "irc.freenode.org#mozilla-circus"
on_success: change