cgddrd/CS39440-major-project

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: python

python:
  - "2.7"

virtualenv:
  system_site_packages: true

branches:
  only:
    - master
    - develop

before_install:
 - sudo apt-get update
 - sudo apt-get install build-essential
 - sudo apt-get install python-opencv
 - sudo apt-get install -qq python-numpy python-scipy
 - sudo dpkg -L python-opencv

# We want to skip the 'install' stage, as this is handled by the project-specific scripts.
install: true

script:
  - bash run_travisci_tests.sh

after_success:
  - coveralls -b "src/tse"