https://github.com/praw-dev/praw
Raw File
Tip revision: bab7f9833593dfd0f7de8cc7be3f2258065036b7 authored by Bryce Boe on 17 July 2016, 00:47:59 UTC
Bump to 4.0.0.b9.
Tip revision: bab7f98
.travis.yml
after_success: coveralls
cache: pip
install: pip install coveralls flake8 pydocstyle pytest==2.8.7
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