forked from ament/ament_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (33 loc) · 852 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
language: python
python:
# - "2.7"
- "3.5"
sudo: false
install:
- pip install nose
- pip install flake8 pydocstyle
# For now install ament_package from git
- git clone https://github.com/ament/ament_package.git
- cd ament_package
- python setup.py install
- cd ..
# For now install osrf_pycommon from git
- git clone https://github.com/osrf/osrf_pycommon.git
- cd osrf_pycommon
- python setup.py install
- cd ..
# For now install ament_copyright / ament_flake8 / ament_pep257 from git
- git clone https://github.com/ament/ament_lint.git
- cd ament_lint/ament_copyright
- python setup.py install
- cd ../..
- cd ament_lint/ament_flake8
- python setup.py install
- cd ../..
- cd ament_lint/ament_pep257
- python setup.py install
- cd ../..
script:
- python setup.py nosetests -s
notifications:
email: false