From 2b7bfd67179dbf3e81d0d743b40ab9c24527b421 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 6 Jun 2015 14:37:20 +0800 Subject: [PATCH] Add coverage testing and coveralls support --- .travis.yml | 4 +++- CHANGES.md | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c184a875..5bbbbf00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ python: install: - pip install cheetah + - pip install coveralls before_script: cd ./tests -script: python all_tests.py \ No newline at end of file +script: coverage run --source=.. --omit=../lib/*,../tornado/* all_tests.py +after_success: coveralls \ No newline at end of file diff --git a/CHANGES.md b/CHANGES.md index 29181398..4e40a674 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -25,6 +25,7 @@ * Change first run after install to set up the main db to the current schema instead of upgrading * Change don't create a backup from an initial zero byte main database file, PEP8 and code tidy up * Fix show list view when no shows exist and "Group show lists shows into" is set to anything other than "One Show List" +* Add coverage testing and coveralls support [develop changelog] * Update Requests library 2.7.0 (ab1f493) to 2.7.0 (8b5e457)