mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 22:24:32 +02:00
15 lines
454 B
YAML
15 lines
454 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
# explicitly overwrite the mavlink that was installed earlier since that will be the wrong public version
|
|
- git clone ssh://git@github.com/OpenSolo/mavlink-solo
|
|
- cd mavlink-solo/pymavlink
|
|
- python setup.py install
|
|
- cd ../..
|
|
sudo : true
|
|
# command to run tests
|
|
script: sudo cp config/shotmanager.orig /etc/shotmanager.conf && nosetests Test/
|