https://github.com/carla-simulator/carla
Raw File
Tip revision: 3ca3ccdd282d554fe9c6a5f6136fbe567dd04740 authored by MTDzi on 11 May 2019, 19:08:52 UTC
Added alternative multi model (based on suggestion by Bartek Topolski)
Tip revision: 3ca3ccd
.travis.yml
language: python

os: linux
dist: trusty # xenial is not yet supported.

env: TEST="Pylint"
python:
  - "3.5"
  - "3.6"
  - "2.7"
install:
  - pip install -r PythonClient/requirements.txt
  - pip install pylint
script:
  - pylint --disable=R,C --rcfile=PythonClient/.pylintrc PythonClient/carla PythonClient/*.py

matrix:
  include:

    - env: TEST="CppCheck"
      install: true
      addons:
        apt:
          packages:
            - cppcheck
      script:
        - cppcheck . -iBuild -i.pb.cc --error-exitcode=1 --enable=warning --quiet

    - env: TEST="MkDocs"
      install:
        - pip install mkdocs
      script:
        - mkdocs build --verbose --clean --strict --site-dir _site

    - env: TEST="AwesomeBot"
      install:
        - gem install awesome_bot
      script:
        - find . -name '*.md' | xargs awesome_bot --allow-dupe --allow-redirect --skip-save-results

notifications:
  email: false
back to top