https://github.com/bear/python-twitter
Revision 006d6ab09eb8d473a6916b7e2d7487b602f52d12 authored by Jeremy Low on 12 April 2016, 23:55:39 UTC, committed by Jeremy Low on 12 April 2016, 23:55:39 UTC
2 parent s 2d8e2f7 + 67575e0
Raw File
Tip revision: 006d6ab09eb8d473a6916b7e2d7487b602f52d12 authored by Jeremy Low on 12 April 2016, 23:55:39 UTC
Merge pull request #321 from bear/fixes/issue320
Tip revision: 006d6ab
.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