From b46432887640e4be0fe5fb7e0789f416834f35d8 Mon Sep 17 00:00:00 2001 From: Byron Ruth Date: Fri, 19 Jul 2013 09:39:49 -0400 Subject: [PATCH] Run test_suite.py directly There is general issue with integrating with Django tests, since it seems to perform redundant runs. This is being deferred for now. --- .gitignore | 1 + .travis.yml | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5b50632..2c20b68 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist MANIFEST *.egg-info +.coverage diff --git a/.travis.yml b/.travis.yml index 46494f4..8de280f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,8 @@ env: - DJANGO=1.4.5 - DJANGO=1.5.1 install: - - pip install coveralls - - pip install -q Django==$DJANGO --use-mirrors + - pip install -q coveralls django==$DJANGO --use-mirrors script: - - coverage run --source=preserialize setup.py test + - coverage run test_suite.py after_success: - coveralls