1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Fixed Travis configuration, added Python 3.6

This commit is contained in:
Mitchell Ludwig 2018-05-06 17:41:49 -06:00
parent 6a529f4f92
commit aefdf23ad2
2 changed files with 15 additions and 11 deletions

View File

@ -1,17 +1,20 @@
language: python language: python
python: 2.7 matrix:
include:
env: - python: 2.7
- TOX_ENV=py26 env: TOXENV=py27
- TOX_ENV=py27 - python: 3.3
- TOX_ENV=py32 env: TOXENV=py33
- TOX_ENV=py33 - python: 3.4
- TOX_ENV=py34 env: TOXENV=py34
- TOX_ENV=flake8 - python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install: install:
- pip install tox - pip install tox
script: script:
- tox -e $TOX_ENV - tox

View File

@ -4,7 +4,8 @@ envlist =
py27, py27,
py33, py33,
py34, py34,
py35 py35,
py36
# ignore missing setup.py # ignore missing setup.py
skipsdist = True skipsdist = True