-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
22 lines (22 loc) · 905 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
language: python
python:
- "3.6"
sudo: false
install:
# Install runtime dependencies from PyPI
- pip install xmlschema
# Install dependent keymint packages from git
- pip install git+git://github.com/keymint/keymint_package.git@master#egg=keymint_package
# Install test dependencies from PyPI
- pip install nose
- pip install flake8 pydocstyle
# Install ament_copyright / ament_flake8 / ament_pep257 from git
- cd /tmp
- pip install --editable 'git+git://github.com/ament/ament_lint.git@master#egg=ament_copyright&subdirectory=ament_copyright'
- pip install --editable 'git+git://github.com/ament/ament_lint.git@master#egg=ament_flake8&subdirectory=ament_flake8'
- pip install --editable 'git+git://github.com/ament/ament_lint.git@master#egg=ament_pep257&subdirectory=ament_pep257'
script:
- cd $TRAVIS_BUILD_DIR
- python setup.py nosetests --nocapture
notifications:
email: false