Revision df5f3e82acd8482ce8d0f082d87e91b2d217f5cd authored by Jeremy Low on 12 April 2016, 22:43:23 UTC, committed by Jeremy Low on 02 May 2016, 10:29:14 UTC
Model repr functions should work for py27 (using backslash escaped strings
in JSON representation and in __repr__ methods). Also fixed an issue with API
not encoding parameters properly for building URLs.
1 parent 09858bf
Raw File
.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