80d8d8d51a
This remove specification of python version from .travis.yml. We do not need it b/c we use travis environments and we use TOX_ENV variable in them - and this is the place where we are overriding python version from default travis env.
15 lines
244 B
YAML
15 lines
244 B
YAML
language: python
|
|
env:
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=pep8
|
|
before_install:
|
|
- pip install tox --use-mirrors
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.freenode.org#tuskar"
|
|
use_notice: true
|
|
skip_join: false
|