forked from lisa-lab/DeepLearningTutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (28 loc) · 934 Bytes
/
Copy path.travis.yml
File metadata and controls
31 lines (28 loc) · 934 Bytes
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
# After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- "2.5"
# - "2.7"
# - "3.2"
# command to install dependencies
before_install:
#zlib1g-dev is needed to allow PIL to uncompress the dataset.
- sudo apt-get install -qq libatlas3gf-base libatlas-dev zlib1g-dev zip unzip zlibc libzip-dev libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev
install:
- "pip install -q numpy --use-mirrors"
# Use Pillow instead of PIL as it is better packaged
- "pip install -q Pillow --use-mirrors"
#If we don't install numpy before SciPy 0.10.1, the SciPy installations fails.
# - "pip install -q scipy --use-mirrors"
- "pip install --no-deps git+git://github.com/Theano/Theano.git"
script:
- cd data
- ./download.sh
- ls
- cd ../code
- pwd
- ls
- export THEANO_FLAGS=warn.ignore_bug_before=all,on_opt_error=raise,on_shape_error=raise
- python --version
- nosetests test.py