Douglas Schilling Landgraf has uploaded a new change for review.
Change subject: configure.ac: pyflakes/python-pep8 reduce to warn
......................................................................
configure.ac: pyflakes/python-pep8 reduce to warn
Replace error message for warning message if build
system doesn't contain pyflakes and python-pep8
packages installed.
Change-Id: Ife89071bcbd0b2b4a50166080575f09e0048cec7
Signed-off-by: Douglas Schilling Landgraf <dougsland(a)redhat.com>
---
M configure.ac
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/39/8939/1
diff --git a/configure.ac b/configure.ac
index 450f714..7cb12ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -100,13 +100,13 @@
# Checking for pyflakes
AC_PATH_PROG([PYFLAKES], [pyflakes])
if test "x$PYFLAKES" = "x"; then
- AC_MSG_ERROR([pyflakes not found, please install it.])
+ AC_MSG_WARN([pyflakes not found])
fi
# Checking for pep8
AC_PATH_PROG([PEP8], [pep8])
if test "x$PEP8" = "x"; then
- AC_MSG_ERROR([python-pep8 not found, please install it.])
+ AC_MSG_WARN([python-pep8 not found])
fi
# Checking for python-devel
--
To view, visit http://gerrit.ovirt.org/8939
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ife89071bcbd0b2b4a50166080575f09e0048cec7
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Douglas Schilling Landgraf <dougsland(a)redhat.com>
Dan Kenigsberg has uploaded a new change for review.
Change subject: doh! fix the former commit
......................................................................
doh! fix the former commit
I've decorated the class instead of the test method :-(
Change-Id: I5d99275ee7cf04e8464f4718c765bca901178e8c
Signed-off-by: Dan Kenigsberg <danken(a)redhat.com>
---
M tests/miscTests.py
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/84/8984/1
diff --git a/tests/miscTests.py b/tests/miscTests.py
index 93a20cd..eeb14d4 100644
--- a/tests/miscTests.py
+++ b/tests/miscTests.py
@@ -70,9 +70,9 @@
proc.wait()
-@brokentest('Test sometimes fail, when misc.getCmdArgs() returns '
- 'the empty tuple right after process creation')
class GetCmdArgsTests(TestCaseBase):
+ @brokentest('Test sometimes fail, when misc.getCmdArgs() returns '
+ 'the empty tuple right after process creation')
def test(self):
args = ("sleep", "4")
sproc = misc.execCmd(args, sync=False, sudo=False)
--
To view, visit http://gerrit.ovirt.org/8984
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I5d99275ee7cf04e8464f4718c765bca901178e8c
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Dan Kenigsberg <danken(a)redhat.com>
Greg Padgett has uploaded a new change for review.
Change subject: Don't ignore nfs_mount_options in vdsm.conf
......................................................................
Don't ignore nfs_mount_options in vdsm.conf
The nfs_mount_options configuration setting in vdsm.conf was ignored.
The options will now be processed, but options passed to VDSM from the
backend will take priority.
Change-Id: I3c1d13bfd98a9b41b9728bdcb7f01b3161c26bd8
Signed-off-by: Greg Padgett <gpadgett(a)redhat.com>
---
M vdsm/storage/fileUtils.py
M vdsm/storage/storageServer.py
2 files changed, 7 insertions(+), 4 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/68/5368/1
--
To view, visit http://gerrit.ovirt.org/5368
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3c1d13bfd98a9b41b9728bdcb7f01b3161c26bd8
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Greg Padgett <gpadgett(a)redhat.com>