________ ERROR at setup of TestOvsApiBase.test_execute_a_single_command
________
@pytest.fixture(scope='session', autouse=True)
def ovs_service():
service = OvsService()
with xfail_when_running_on_travis_with_centos():
service.setup()
network/integration/ovs/conftest.py:38:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _
self = <network.ovsnettestlib.OvsService object at 0x7fbdc2256a58>
def setup(self):
if not self.ovs_init_state_is_up:
cmd.exec_sync([OVS_CTL, '--system-id=random', 'start'])
assert self.is_service_running()
E AssertionError
This line looks wrong:
with xfail_when_running_on_travis_with_centos()
The test fail on Fedora:
https://travis-ci.org/nirs/vdsm/jobs/480027211
https://travis-ci.org/nirs/vdsm/jobs/480027212
works on CentOS:
https://travis-ci.org/nirs/vdsm/jobs/480027210
Looks like we need to switch the check to Fedora.
I think this started to fail today, after I rebuild the Fedora 28 image:
https://gerrit.ovirt.org/c/96847/
maybe an update in Fedora is related?
Nir