Initial use of the continious integration service Travis CI.

master
baztian 2014-02-10 14:55:34 +01:00
parent 14bd3e63f2
commit ae4ad3cf2b
2 changed files with 20 additions and 0 deletions

17
.travis.yml 100644
View File

@ -0,0 +1,17 @@
language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq openjdk-7-jdk openjdk-7-jre
install:
- pip install -r requirements.txt
- jip install org.xerial:sqlite-jdbc:3.7.2
- jip install org.hsqldb:hsqldb:1.8.0.10
script:
- export CLASSPATH=$VIRTUAL_ENV/javalib/*
- python test.py

3
requirements.txt 100644
View File

@ -0,0 +1,3 @@
git+https://github.com/originell/jpype.git#egg=jpype
jip==0.7
-e .