forked from jpype-project/jpype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (42 loc) · 851 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
os:
- linux
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- 'pypy'
- 'pypy3'
- "nightly"
addons:
apt:
packages:
- ant
env:
# one build with and without numpy support (opt numpy out)
- NUMPY="--install-option=--disable-numpy"
- NUMPY=""
matrix:
allow_failures:
- python: 'pypy'
env: NUMPY="--install-option=--disable-numpy"
- python: 'pypy3'
env: NUMPY="--install-option=--disable-numpy"
- python: 'pypy'
env: NUMPY=""
- python: 'pypy3'
env: NUMPY=""
- python: 'nightly'
env: NUMPY=""
- python: 'nightly'
env: NUMPY="--install-option=--disable-numpy"
install:
- pip install . $NUMPY
- pip install -r test-requirements.txt
- ant -f test/build.xml
script:
- python -c "import jpype"
- python test/testsuite.py