https://github.com/bear/python-twitter
Raw File
Tip revision: e68b6ae4a9b1bb959e310f7786b28ebf1fa8562d authored by bob pasker on 28 December 2015, 14:01:22 UTC
initialize Api.__auth fixes #119
Tip revision: e68b6ae
.travis.yml
language: python
sudo: false
python:
  - "2.7"

before_install:
  - pip install codecov

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

script:
  - make test

after_success:
  - codecov
back to top