File: .travis.yml

package info (click to toggle)
ros-wstool 0.1.18-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 652 kB
  • sloc: python: 6,269; sh: 180; makefile: 169
file content (31 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (2)
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
language: python
python:
  - "2.7"
  - "3.5"
  - "3.6"

# Add test requirements; travis will do the rest
before_install:
  - cat requirements-test.txt >> requirements.txt

install:
  - sudo apt-get update
  - pip install -U setuptools tox tox-travis
  - echo $PYTHONPATH
  - python -c 'import sys; print(sys.path)'
  - python setup.py install
  - python -c 'import coverage'

# command to run tests
script:
  - tox

  # Install rosinstall from pip and perform a sanity check
  - pip install --upgrade rosinstall wstool
  - rosws
  - wstool --help

notifications:
  email: false
after_success:
  - coveralls