forked from dronekit/dronekit-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
incisor.yml
31 lines (29 loc) · 1.08 KB
/
incisor.yml
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
builds:
- os: windows
stages:
setup:
- python -m pip install pip -U
- SET PATH=%PYTHON%;c:\Python27\Scripts;%PATH% & pip2 install nose numpy psutil
- SET PATH=%PYTHON%;c:\Python27\Scripts;%PATH% & pip2 install git+https://github.com/3drobotics/dronekit-sitl-runner.git
build:
- python setup.py install
- SET PATH=%PYTHON%;c:\Python27\Scripts;%PATH% & nosetests tests\web
- SET PATH=%PYTHON%;c:\Python27\Scripts;%PATH% & cd tests & python -m sitl
- os: linux
stages:
setup:
- pip2 install nose psutil
- pip2 install git+https://github.com/3drobotics/dronekit-sitl-runner.git
build:
- python setup.py install
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || nosetests tests/web'
- cd tests; python -m sitl
- os: osx
stages:
setup:
- sudo pip2 install nose psutil
- sudo pip2 install git+https://github.com/3drobotics/dronekit-sitl-runner.git
build:
- sudo python setup.py install
- nosetests tests/web
- cd tests; python -m sitl