Skip to content

Commit a6cd275

Browse files
author
Tarek Galal
committed
[meta] add travis file
1 parent 9bbaaf5 commit a6cd275

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.travis.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
language: python
2+
python: '3.6'
3+
# command to install dependencies
4+
5+
env:
6+
global:
7+
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
8+
- SEGFAULT_SIGNALS=all
9+
matrix:
10+
- TOXENV=py25
11+
- TOXENV=py26
12+
- TOXENV=py27
13+
- TOXENV=py33
14+
- TOXENV=py34
15+
- TOXENV=py35
16+
- TOXENV=py36
17+
- TOXENV=py37
18+
before_install:
19+
- python --version
20+
- uname -a
21+
- lsb_release -a
22+
install:
23+
- pip install tox
24+
- virtualenv --version
25+
- easy_install --version
26+
- pip --version
27+
- tox --version
28+
# command to run tests
29+
script:
30+
- tox -v
31+
after_failure:
32+
- more .tox/log/* | cat
33+
- more .tox/*/log/* | cat
34+
before_cache:
35+
- rm -rf $HOME/.cache/pip/log
36+
cache:
37+
directories:
38+
- $HOME/.cache/pip

0 commit comments

Comments
 (0)