-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
22 lines (19 loc) · 807 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
general:
branches:
ignore:
- /zz.*/ # Don't run tests on deprecated branches.
machine:
environment:
PYTHONPATH: /usr/local/lib/python2.7/dist-packages
dependencies:
override: # Rather than using their autodetected steps, use these instead
- sudo apt-get update; sudo apt-get install python-opencv libsuitesparse-dev libboost-dev
- sudo cp /usr/lib/python2.7/dist-packages/cv2.so /usr/local/lib/python2.7/dist-packages; sudo cp /usr/lib/python2.7/dist-packages/cv.py /usr/local/lib/python2.7/dist-packages
- rake install_style_config
- pip install -U 'numpy>=1.10.1' 'scipy>=0.14.1'
- pip install -Ur requirements_dev.txt
- pip install -Ue .
test:
override: # rather than using their autodetected steps, use these instead
- rake unittest
- rake lint