diff options
author | maheshgudi | 2017-03-10 16:14:44 +0530 |
---|---|---|
committer | maheshgudi | 2017-03-11 02:15:55 +0530 |
commit | 6961ff1cf46d4b8591a4528a2c3fef156268eec5 (patch) | |
tree | 608c6c59e626cef48e0254eda9411da6f970e20e /.travis.yml | |
parent | 8e2bf890d38d4ab2ac73180ff4982302d9355b75 (diff) | |
parent | ce7238aef6d5080d8f7ea79b96c9569bf191f0b8 (diff) | |
download | online_test-6961ff1cf46d4b8591a4528a2c3fef156268eec5.tar.gz online_test-6961ff1cf46d4b8591a4528a2c3fef156268eec5.tar.bz2 online_test-6961ff1cf46d4b8591a4528a2c3fef156268eec5.zip |
Merge branch 'master' of https://github.com/fossee/online_test into fill_in_the_blanks
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index f1c4dab..4777f11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,12 @@ install: - pip install -r requirements/requirements-common.txt - python setup.py develop -# command to run tests +# command to run tests and coverage script: - - python manage.py test -v 2 yaksh - - python manage.py test -v 2 yaksh.live_server_tests.load_test + - coverage erase + - coverage run -p manage.py test -v 2 yaksh + - coverage run -p manage.py test -v 2 yaksh.live_server_tests.load_test + +after_success: + - coverage combine + - coverage report |