summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ee069e88e8c31dcdf1bf553e77e9bc02d15804c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: python
sudo: false
python:
  - 2.6
  - 2.7
  - 3.2
  - 3.3
  - 3.4
  - 3.5
  - nightly
  - pypy
  - pypy3
install:
  - pip install -e .
  - pip list
script:
  - python pycodestyle.py --testsuite testsuite
  - python pycodestyle.py --statistics pycodestyle.py
  - python pycodestyle.py --doctest
  - python setup.py test

notifications:
  email:
    - IanLee1521@gmail.com
  irc:
    channels:
      - "irc.freenode.org##python-code-quality"
    use_notice: true
    skip_join: true