AlexMathew/scrapple

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
# Config file for automatic testing at travis-ci.org

language: python

python:
  - "3.4"
  - "2.7"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
before_install:
  - sudo apt-get update

install:
  - sudo apt-get install libxml2-dev libxslt-dev python-dev lib32z1-dev
  - pip install -r requirements.txt

# command to run tests, e.g. python setup.py test
script:
    - pip install -r test_requirements.txt
    - cd tests/ && nosetests -v --with-xcoverage --cover-package=scrapple

after_success:
    - coveralls