summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 8cbebe76..715fd5dd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,14 @@
language: python
python:
- - "2.6"
- "2.7"
- "3.3"
- "3.4"
+ - "pypy"
install:
- pip install -r requirements.txt
-script: python setup.py install
+ - pip install coveralls
+script:
+ - python setup.py install
+ - coverage run --source=glances unitest.py
+after_success:
+ - coveralls \ No newline at end of file