.travis.yml 184 B

1234567891011
  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. - flake8 fig
  11. - nosetests tests/unit