https://github.com/bear/python-twitter
Raw File
Tip revision: 67d7595632e746833ef1420a650af4c5eb856060 authored by Jeremy Low on 23 January 2016, 20:25:34 UTC
adds tests for new `raw_query` parameter in GetSeach()
Tip revision: 67d7595
.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