From 1374b43c931278b4797d9c00af9b8a90df87d366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Thu, 13 Aug 2015 11:39:31 +0300 Subject: [PATCH] Let's try coveralls.io --- .gitignore | 1 + .travis.yml | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 08e08461..0004ce7f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__/ +.coverage local_settings.py static-collected \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index c2fbd147..425eb273 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,12 @@ language: python python: + - "2.7" - "3.4" -install: "pip install -r requirements.txt" +install: + - pip install -r requirements.txt + - pip install coveralls addons: postgresql: "9.4" script: - - python manage.py test hc.api hc.front \ No newline at end of file + - coverage run --source=hc manage.py test +after_success: coveralls