https://github.com/bear/python-twitter
Raw File
Tip revision: ea77ccc63cef50be094fe71051d6263984e6f852 authored by Jeremy Low on 28 April 2016, 03:08:21 UTC
fix badge URLs for CircleCI and ReadtheDocs
Tip revision: ea77ccc
.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.testing.txt

script:
  - make test

after_success:
  - codecov
back to top