diff options
| -rw-r--r-- | .coveragerc | 5 | ||||
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | .travis.yml | 15 | ||||
| -rw-r--r-- | README.md | 2 |
4 files changed, 17 insertions, 6 deletions
diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..b2ddda4 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,5 @@ +[report] +omit = + */python?.?/* + */site-packages/nose/* + *__init__*
\ No newline at end of file @@ -15,3 +15,4 @@ client/profile.yml build/* server/dump.rdb other/* +.coverage
\ No newline at end of file diff --git a/.travis.yml b/.travis.yml index 09e0aec..ca19c58 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,13 @@ -language: python - env: - ARCH=x86 - -script: +language: python +python: + - "2.7" +install: - "pip install -r client/requirements.txt" - - "cd client && python test.py --light" + - "pip install python-coveralls" + - "pip install coverage" +script: + - "coverage run client/test.py --light" +after_success: + - "coveralls"
\ No newline at end of file @@ -1,7 +1,7 @@ jasper-client ============= -[](https://travis-ci.org/jasperproject/jasper-client) +[](https://travis-ci.org/jasperproject/jasper-client) [](https://coveralls.io/r/jasperproject/jasper-client) Client code for the Jasper voice computing platform. Jasper is an open source platform for developing always-on, voice-controlled applications. |
