forked from ionelmc/cookiecutter-pylibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
45 lines (45 loc) · 1.05 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
language: python
python: 2.7
sudo: false
env:
global:
LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
matrix:
- ENV=matrix
- ENV=matrix-cext
- ENV=matrix-cext-optional
- ENV=matrix-fnaccents
- ENV=matrix-fndoublequote
- ENV=matrix-fnquote
- ENV=matrix-fntriplequote
- ENV=matrix-pnaccents
- ENV=matrix-pndoublequote
- ENV=matrix-pnquote
- ENV=matrix-pntriplequote
- ENV=plain
- ENV=plain-cext
- ENV=plain-cext-optional
- ENV=plain-fnaccents
- ENV=plain-fndoublequote
- ENV=plain-fnquote
- ENV=plain-fntriplequote
- ENV=plain-pnaccents
- ENV=plain-pndoublequote
- ENV=plain-pnquote
- ENV=plain-pntriplequote
before_install:
- python --version
- virtualenv --version
- pip --version
- uname -a
- lsb_release -a
install:
- pip install -I -U tox cookiecutter bumpversion
script:
- git config --global user.email "you@example.com"
- git config --global user.name "Your Name"
- ci/test.sh $ENV
notifications:
email:
on_success: never
on_failure: always