diff options
author | ankitjavalkar | 2017-03-09 18:13:11 +0530 |
---|---|---|
committer | ankitjavalkar | 2017-03-09 18:19:42 +0530 |
commit | f5fd0c9eae3d673209528db37e5848cb38a568e6 (patch) | |
tree | 46c0521525bdcb2e08c3c5bdbac1a763b73fee5e /.travis.yml | |
parent | 69951e247ea02196ec6e65324f77898d9ea389b3 (diff) | |
download | online_test-f5fd0c9eae3d673209528db37e5848cb38a568e6.tar.gz online_test-f5fd0c9eae3d673209528db37e5848cb38a568e6.tar.bz2 online_test-f5fd0c9eae3d673209528db37e5848cb38a568e6.zip |
Add coverage:
- Add coverage prerequisite to requirements
- Add coverage config file
- Add coverage command to travis
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 |