aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: bf69238eeb4a12559f7952f5874be41a88e2a84e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
dist: xenial
language: python
python:
  - "2.7"
  - "3.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