b569b19a7f
Drop support for Python 2.6 and 3.3
30 lines
831 B
YAML
30 lines
831 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
env: TOX_ENV=py27
|
|
- python: 3.4
|
|
env: TOX_ENV=py34
|
|
- python: 3.5
|
|
env: TOX_ENV=py35
|
|
- python: 3.6
|
|
env: TOX_ENV=py36
|
|
- python: 2.7
|
|
env: TOX_ENV=wheezy
|
|
install:
|
|
- pip install -U pip
|
|
- pip install flake8 tox
|
|
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
# stop the build if there are Python syntax errors or undefined names
|
|
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
|
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
|
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#isso"
|
|
on_success: change
|
|
on_failure: always
|