mirror of https://github.com/kivy/pyjnius.git
Update .travis.yml
This commit is contained in:
parent
37d702622e
commit
0f4604d6fe
22
.travis.yml
22
.travis.yml
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue