-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (23 loc) · 719 Bytes
/
.travis.yml
File metadata and controls
31 lines (23 loc) · 719 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
language: python
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install libblas-dev liblapack-dev libatlas-dev python-opencv python-dev python-tk
- sudo dpkg -L python-opencv
- export logDISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
install:
- pip install pep8
- pip install coveralls
- pip install --pre -r requirements.txt
python:
- 2.7
before_script:
- pep8 -v --ignore=E402 --max-line-length=125 src
script:
- nosetests #--with-coverage --cover-erase --cover-package=src/logger.py,src/serial_interface.py,src/signal_processing.py,src/video.py,src/setup.py,src/main.py,src/defines.py,src/settings.py
after_success:
#- coveralls
notifications:
email: false