https://github.com/praw-dev/praw
Raw File
Tip revision: 2f5bb25a257b2d5923566de3a7a8d2c74091079b authored by Bryce Boe on 17 July 2016, 22:49:41 UTC
Bump to 4.0.0.b10.
Tip revision: 2f5bb25
.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