diff options
| author | Scott Dodson <sdodson@redhat.com> | 2016-12-08 10:44:48 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-08 10:44:48 -0500 | 
| commit | 8001a090e8711b3d9d5be3d7cd3864b77b64deab (patch) | |
| tree | 68e776529b69e756ab0376c41e3ee9d061dbd691 | |
| parent | b98cbbd341c91caf180eb7d0602f3a339f4f6939 (diff) | |
| parent | 7858f6724116f1846f23fa71962f13a278fcd576 (diff) | |
Merge pull request #2952 from tbielawa/fix-coverage-erase
Fix coverage not appending new data
| -rw-r--r-- | utils/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/utils/Makefile b/utils/Makefile index edfead824..49c61e115 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -78,7 +78,7 @@ ci-unittests:  	@echo "#############################################"  	@echo "# Running Unit Tests in virtualenv"  	@echo "#############################################" -	. $(NAME)env/bin/activate && python setup.py nosetests +	. $(NAME)env/bin/activate && python setup.py nosetests --cover-erase  	@echo "VIEW CODE COVERAGE REPORT WITH 'xdg-open cover/index.html' or run 'make viewcover'"  ci-pylint: | 
