Files
mailbot/.travis.yml
Mathieu Agopian 971a3a393c compatible python3
2013-07-28 00:16:43 +02:00

13 lines
363 B
YAML

language: python
python:
- "2.7"
- "3.3"
install:
- pip install --use-mirrors flake8 mock
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install --use-mirrors unittest2py3k; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install --use-mirrors unittest2; fi
- pip install -e .
script:
- unit2 discover mailbot.tests
- flake8 mailbot