https://github.com/bear/python-twitter
Raw File
Tip revision: 7457f1e2f3084854a80d1c5ff68a748986d9d931 authored by bear (Mike Taylor) on 14 November 2015, 21:07:25 UTC
have travis use Makefile
Tip revision: 7457f1e
.travis.yml
language: python
sudo: false
python:
  - "2.7"
  - "3.5"

before_install:
  - pip install codecov

install:
  - travis_retry pip install .
  - pip install -r requirements.txt

script:
  - make test

after_success:
  - codecov
back to top