-
Notifications
You must be signed in to change notification settings - Fork 348
Expand file tree
/
Copy path.travis.yml
More file actions
executable file
·34 lines (25 loc) · 805 Bytes
/
Copy path.travis.yml
File metadata and controls
executable file
·34 lines (25 loc) · 805 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
31
32
33
34
dist: trusty
sudo: required
group: edge
language: python
python:
- "3.5"
cache: pip
install:
# install protobuf
- sudo bash scripts/install/travis_install.bash
# install python dependencies
- pip install -r requirements.txt
- pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.3.0-cp35-cp35m-linux_x86_64.whl
# install c++ lib for wavedata
- sudo bash scripts/install/build_integral_image_lib.bash
before_script:
- git submodule init
- git submodule update
- export PYTHONPATH=$PYTHONPATH:`pwd`:`pwd`/wavedata
- sudo protoc avod/protos/*.proto --python_out=.
script:
- python scripts/preprocessing/travis_test_preprocessing.py
- python -m unittest discover -b --pattern "*_test.py"
notifications:
email: false