Update .travis.yml

This commit is contained in:
dessant 2015-06-24 22:41:22 +03:00
parent 37d702622e
commit 0f4604d6fe
1 changed files with 16 additions and 6 deletions

View File

@ -1,15 +1,25 @@
language: python language: python
python: python:
- "2.7" - 2.7
# command to install dependencies - 3.4
before_install: before_install:
- sudo apt-get update - sudo apt-get update
- sudo apt-get install python-pip openjdk-7-jdk
install: install:
- pip install --upgrade cython --use-mirrors - sudo apt-get install python-pip openjdk-7-jdk
- make - pip install --upgrade cython
# command to run tests
script: script:
- make
- make tests - make tests
notifications:
irc:
channels:
- chat.freenode.net#kivy-dev
on_success: change
on_failure: always
use_notice: true
skip_join: true