summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-12-08 10:44:48 -0500
committerGitHub <noreply@github.com>2016-12-08 10:44:48 -0500
commit8001a090e8711b3d9d5be3d7cd3864b77b64deab (patch)
tree68e776529b69e756ab0376c41e3ee9d061dbd691
parentb98cbbd341c91caf180eb7d0602f3a339f4f6939 (diff)
parent7858f6724116f1846f23fa71962f13a278fcd576 (diff)
downloadopenshift-8001a090e8711b3d9d5be3d7cd3864b77b64deab.tar.gz
openshift-8001a090e8711b3d9d5be3d7cd3864b77b64deab.tar.bz2
openshift-8001a090e8711b3d9d5be3d7cd3864b77b64deab.tar.xz
openshift-8001a090e8711b3d9d5be3d7cd3864b77b64deab.zip
Merge pull request #2952 from tbielawa/fix-coverage-erase
Fix coverage not appending new data
-rw-r--r--utils/Makefile2
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: