Codebase list python-magic-ahupp / 85caa5b5-23f1-47e9-b684-6d4e447fd3f4/main .travis.yml
85caa5b5-23f1-47e9-b684-6d4e447fd3f4/main

Tree @85caa5b5-23f1-47e9-b684-6d4e447fd3f4/main (Download .tar.gz)

.travis.yml @85caa5b5-23f1-47e9-b684-6d4e447fd3f4/mainraw · history · blame

language: python

# needed to use trusty
sudo: required

dist: trusty

python:
  - "2.6"
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
  - "nightly"

install:
  - pip install coveralls
  - pip install codecov
  - python setup.py install

script:
  - coverage run setup.py test

after_success:
  - coveralls
  - codecov