summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 10 insertions, 5 deletions
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