forked from dronekit/dronekit-python
-
Notifications
You must be signed in to change notification settings - Fork 17
/
appveyor.yml
32 lines (25 loc) · 815 Bytes
/
appveyor.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
32
environment:
SITL_SPEEDUP: 10
SITL_RATE: 200
cache:
- "c:\\Users\\appveyor\\.pip-wheelhouse"
install:
- ps: |
New-Item -ItemType Directory -Force -Path c:\Users\appveyor\pip\
@'
[global]
find-links = file://c:/Users/appveyor/.pip-wheelhouse
[wheel]
wheel-dir = c:/Users/appveyor/.pip-wheelhouse
'@ | out-file -Encoding ascii -FilePath c:\Users\appveyor\pip\pip.ini
- cmd: 'SET PATH=%PYTHON%;c:\\Python27\\Scripts;%PATH%'
- cmd: 'SET PYTHONUNBUFFERED=1'
- cmd: 'python -m pip install pip wheel -U'
- cmd: 'pip install . -UI'
- cmd: 'pip install -r requirements.txt -UI'
build_script:
# - cmd: 'nosetests -svx dronekit.test.web'
- cmd: 'nosetests -svx dronekit.test.unit'
- cmd: 'nosetests -svx dronekit.test.sitl'
clone_depth: 10
test: 'off'