blob: a163da4715dbdc5933403911c39d9c701a5c3002 (
plain) (
tree)
|
|
language: python
python:
- "2.7"
cache: pip
install:
- pip install flake8 pytest websocket-client
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 .
# exit-zero treats all errors as warnings.
- flake8 . --exit-zero --select=C,E,F,W
script:
- python -m pytest
notifications:
irc: "chat.freenode.net#wee-slack-dev"
email: false
|