Update .travis.yml

This commit is contained in:
dessant 2016-01-09 03:08:35 +02:00
parent de9296ae83
commit 7ce63d9328
1 changed files with 25 additions and 25 deletions

View File

@ -1,33 +1,33 @@
matrix: matrix:
fast_finish: true fast_finish: true
include: include:
- language: python # - language: python
python: 2.7 # python: 2.7
env: RUN=unit # env: RUN=unit
os: linux # os: linux
dist: trusty # dist: trusty
- language: python # - language: python
python: 3.5 # python: 3.5
env: # env:
- RUN=unit COVERALLS=true # - RUN=unit COVERALLS=true
os: linux # os: linux
dist: trusty # dist: trusty
- language: python # - language: python
python: 3.5 # python: 3.5
env: RUN=pep8 # env: RUN=pep8
os: linux # os: linux
dist: trusty # dist: trusty
- language: python # - language: python
python: 3.5 # python: 3.5
env: RUN=docs # env: RUN=docs
os: linux # os: linux
dist: trusty # dist: trusty
- language: generic - language: generic
env: RUN=build PY=2 env: RUN=build PY=2
os: osx os: osx
- language: generic # - language: generic
env: RUN=build PY=3 # env: RUN=build PY=3
os: osx # os: osx
install: install:
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
@ -123,7 +123,7 @@ script:
python3 -m nose.core kivy/tests; python3 -m nose.core kivy/tests;
else else
make; make;
make test; python -c 'import kivy.core.window' -c 'kivy:log_level:trace';
fi; fi;
fi; fi;