.travis.yml 207 B

123456789101112
  1. language: python
  2. python:
  3. - '2.6'
  4. - '2.7'
  5. install:
  6. - pip install .
  7. - pip install -r requirements.txt
  8. - pip install -r requirements-dev.txt
  9. script:
  10. - script/validate-dco
  11. - flake8 fig
  12. - nosetests tests/unit