Yaniv Bronhaim has uploaded a new change for review. Change subject: Install nose-1.3.7 always using pip ......................................................................
Install nose-1.3.7 always using pip In epel7 yum provides only nose-1.3.0 officially. in automation script we use NOSE_COVER_PACKAGE flag which does not exist in this nose version. To align versions in CI we use pip to install specific version. For developers run using make the nose version is not relevant, unless they run coverage. Change-Id: I2c12634019fd95a5516f8c8a60e785d672a2f5e1 Signed-off-by: Yaniv Bronhaim <[email protected]> --- M Makefile.am M automation/check-patch.sh 2 files changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/07/57507/1 diff --git a/Makefile.am b/Makefile.am index 073c61d..6851309 100644 --- a/Makefile.am +++ b/Makefile.am @@ -135,7 +135,7 @@ fi # Note: dependencies ordered by time needed to run them -check-recursive: gitignore abs_imports python3 pyflakes pep8 +check-recursive: gitignore abs_imports pyflakes pep8 .PHONY: check-all check-all: diff --git a/automation/check-patch.sh b/automation/check-patch.sh index c0ffd57..8b96db3 100755 --- a/automation/check-patch.sh +++ b/automation/check-patch.sh @@ -6,6 +6,7 @@ easy_install pip pip install -U pep8==1.5.7 pyflakes==1.1.0 +pip install -U nose==1.3.7 ./autogen.sh --system --enable-hooks -- To view, visit https://gerrit.ovirt.org/57507 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I2c12634019fd95a5516f8c8a60e785d672a2f5e1 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yaniv Bronhaim <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
