2016-05-20 23:14:03 +00:00
|
|
|
language: python
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -qq mpg123 portaudio19-dev libglib2.0-dev swig bison libtool autoconf libglib2.0-dev
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
# don't rebuild pocketsphinx for every build
|
|
|
|
cache: pocketsphinx-python
|
|
|
|
# command to install dependencies
|
|
|
|
install:
|
|
|
|
- VIRTUALENV_ROOT=${VIRTUAL_ENV} ./dev_setup.sh
|
|
|
|
- pip install -r requirements.txt
|
2017-02-15 16:22:07 +00:00
|
|
|
# - pip install -r test-requirements.txt
|
2016-05-20 23:14:03 +00:00
|
|
|
# command to run tests
|
2016-05-20 22:15:53 +00:00
|
|
|
script:
|
|
|
|
- pep8 mycroft test
|
2017-02-15 16:22:07 +00:00
|
|
|
# - ./start.sh unittest --fail-on-error
|