https://github.com/praw-dev/praw
Raw File
Tip revision: 87781ebef29a9ae7f47ad6687a6d679b6e797ee0 authored by Bryce Boe on 14 November 2016, 01:13:05 UTC
Bump to 3.6.0.
Tip revision: 87781eb
.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