Codebase list ros-bloom / debian/0.6.9-1 .travis.yml
debian/0.6.9-1

Tree @debian/0.6.9-1 (Download .tar.gz)

.travis.yml @debian/0.6.9-1raw · history · blame

language: python
python:
  - "2.7"
  - "3.4"
  - "3.6"
# command to install dependencies
install:
  - pip install PyYAML argparse rosdep vcstools catkin-pkg python-dateutil setuptools
  - pip install nose coverage pep8
  - git clone https://github.com/dirk-thomas/empy.git /tmp/empy
  - cd /tmp/empy
  - python setup.py install
  - cd -
  - sudo `which rosdep` init
  - rosdep update
  - git config --global user.email "test@example.com"
  - git config --global user.name "Test User"
# command to run tests
script:
  - BLOOM_VERBOSE=1 python setup.py nosetests -s --tests test
notifications:
  email: false