From 0f4604d6fed010fd97ce1299945dbe65848032dd Mon Sep 17 00:00:00 2001 From: dessant Date: Wed, 24 Jun 2015 22:41:22 +0300 Subject: [PATCH] Update .travis.yml --- .travis.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 05d6869..67c518d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,25 @@ language: python + python: - - "2.7" -# command to install dependencies + - 2.7 + - 3.4 + before_install: - sudo apt-get update - - sudo apt-get install python-pip openjdk-7-jdk install: - - pip install --upgrade cython --use-mirrors - - make + - sudo apt-get install python-pip openjdk-7-jdk + - pip install --upgrade cython -# command to run tests script: + - make - make tests + +notifications: + irc: + channels: + - chat.freenode.net#kivy-dev + on_success: change + on_failure: always + use_notice: true + skip_join: true