mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
* Cosmetics * Harmonograph demo * Cleanup * Original * Original * Cosmetics * Original file * Fixes * cosmetics * separate classes * Cosmetics * Cosmetics * fix tests * Remove plotter tests * Add bluegiga * Rename it * Progress * Fix tests * Cosmetics * Found a way for pygatt! * Playing with gatt * Fix hung subscribe * rename class * add test * skeleton for autodetect * safer order * Fix tests * Fix test * Add dbus install * another try * 2 * 3 * 34 * 6 * 7 * Isolate some tests * 8 * back to roots * Try more * 9 * Help * rep * site-packs * Fix? * Py3 come on * dbus * busss * dev null! * Fix test * Cleanup * Fix tests * Fix after review * add package * FIx package paths * Cosmetics * Update * More doc
38 lines
633 B
YAML
38 lines
633 B
YAML
sudo: false
|
|
language: python
|
|
virtualenv:
|
|
system_site_packages: true
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
python: 2.7
|
|
- os: linux
|
|
python: 3.4
|
|
|
|
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
|
|
|
|
|
|
script: coverage run --source=. `which nosetests` tests --nocapture --exclude-dir=examples
|
|
|
|
after_success:
|
|
- coverage report -m
|
|
- codecov
|