David Caro has uploaded a new change for review. Change subject: Avoiding to include pyflakes directly ......................................................................
Avoiding to include pyflakes directly This way you can totally fake the pyflakes execution with the PYFLAKES env variable Change-Id: I674ae8f8e5ff8b21a0175197bd42e61af6075afd Signed-off-by: David Caro <[email protected]> --- M Makefile.am 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/13/29213/1 diff --git a/Makefile.am b/Makefile.am index 838c53d..2a5e712 100644 --- a/Makefile.am +++ b/Makefile.am @@ -79,7 +79,7 @@ 'lv' from line .*" check-local: - python -c 'import pyflakes; print("pyflakes-%s" % pyflakes.__version__)' + $(PYFLAKES) --version find . -path './.git' -prune -type f -o \ -name '*.py' -o -name '*.py.in' | xargs $(PYFLAKES) | \ grep -w -v $(SKIP_PYFLAKES_ERR) | \ -- To view, visit http://gerrit.ovirt.org/29213 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I674ae8f8e5ff8b21a0175197bd42e61af6075afd Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: David Caro <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
