forked from catkin/catkin_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (44 loc) · 1.11 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
# Travis auto-virtualenv isn't supported on OS X
#language: python
#python:
#- "2.7"
#- "3.3"
language: generic
matrix:
include:
- python: 2.7
language: python
python: "2.7"
os: linux
env: PYTHON=/usr/bin/python2.7
- python: 3.4
language: python
python: "3.4"
os: linux
env: PYTHON=/usr/bin/python3.4
- python: 2
os: osx
env: PYTHON=/usr/bin/python
- python: 3
os: osx
env: PYTHON=/usr/local/bin/python3
before_install:
- source .travis.before_install.bash
install:
- pip install argparse catkin-pkg distribute PyYAML psutil
- pip install nose coverage flake8 mock --upgrade
before_script:
- ./.travis.before_script.bash
- pip install git+https://github.com/jbohren-forks/osrf_pycommon.git@dont-close-fds
- pip install empy --upgrade
- git clone https://github.com/ros/catkin.git /tmp/catkin_source
- mkdir /tmp/catkin_source/build
- pushd /tmp/catkin_source/build
- cmake .. && make
- source devel/setup.bash
- popd
script:
- python setup.py develop
- python setup.py nosetests -s
notifications:
email: false