13 lines
363 B
YAML
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
|