forked from yandexdataschool/tinyverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis
45 lines (39 loc) · 1.04 KB
/
.travis
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
language: python
sudo: required
dist: trusty
python:
- "2.7"
- "3.4"
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- libopenblas-dev
- liblapack-dev
- gfortran
- make
- cmake
- cmake-data
- swig
- libav-tools
- libboost-all-dev
- libjpeg-dev
- zlib1g-dev
- python-dev
- redis-server
- golang
- libjpeg-turbo8-dev
install:
#dependeicies via pip
- travis_wait pip install https://github.com/theano/theano/archive/master.zip
- travis_wait pip install https://github.com/lasagne/lasagne/archive/master.zip
- travis_wait pip install https://github.com/yandexdataschool/agentnet/archive/master.zip
- travis_wait pip install nose nose-parameterized
- travis_wait pip install redis joblib prefetch_generator
#install opencv somehow
# installing Gym
- travis_wait pip install gym[atari]
- travis_wait pip install universe
script:
- nosetests tests/test_database.py --verbose --nocapture --failure-detail