mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
38 lines
657 B
YAML
38 lines
657 B
YAML
sudo: false
|
|
language: python
|
|
virtualenv:
|
|
system_site_packages: true
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: 2.7
|
|
- os: linux
|
|
python: 3.5
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libboost-python-dev
|
|
- libboost-thread-dev
|
|
- libbluetooth-dev
|
|
|
|
- libglib2.0-dev
|
|
- libdbus-1-dev
|
|
- libdbus-glib-1-dev
|
|
- libgirepository-1.0-1
|
|
|
|
- python-dbus
|
|
- python-gi
|
|
- python3-dbus
|
|
- python3-gi
|
|
install:
|
|
- pip install codecov nose-exclude gattlib pygatt gatt pexpect bluepy
|
|
|
|
|
|
script: coverage run --source=. -m nose tests -v --exclude-dir=examples
|
|
|
|
after_success:
|
|
- coverage report -m
|
|
- codecov
|