https://github.com/praw-dev/praw
Raw File
Tip revision: 0c88697fdc26e75f87b68e2feb11e101e90ce215 authored by unknown on 10 May 2016, 07:17:24 UTC
Clean changelog. Bump to version: 3.5.0
Tip revision: 0c88697
.travis.yml
after_success: coveralls
cache: pip
install: pip install coveralls flake8 pydocstyle
language: python
matrix:
  allow_failures:
    - python: nightly
  fast_finish: true
python:
  - 2.7
  - 3.3
  - 3.4
  - 3.5
  - nightly
sudo: false
script:
  - flake8 --exclude=docs
  - pydocstyle praw
  - coverage run --source=praw setup.py test
back to top