forked from colcon/colcon-ros-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
23 lines (23 loc) · 965 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
language: python
python: "3.5"
dist: xenial
sudo: true
before_install:
- sudo apt update && sudo apt install -y enchant
install:
- pip install -U setuptools
# install_requires
- pip install -U git+https://github.com/colcon/colcon-core
- pip install -U git+https://github.com/colcon/colcon-library-path
- pip install -U git+https://github.com/colcon/colcon-cmake
- pip install -U git+https://github.com/colcon/colcon-python-setup-py
- pip install -U git+https://github.com/colcon/colcon-bundle
- pip install -U git+https://github.com/ros-infrastructure/rosdep
- pip install -U git+https://github.com/colcon/colcon-ros
# tests_require
- pip install -U flake8-blind-except flake8-builtins flake8-class-newline flake8-comprehensions flake8-deprecated flake8-docstrings flake8-quotes pep8-naming pyenchant pylint pytest pytest-cov
script:
# invoke pytest
- python3 -m pytest --cov=colcon_ros_bundle --cov-branch
notifications:
email: false