[VDSM] Network tests started to fail on Fedora 28 in travis

________ 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

On Tue, Jan 15, 2019 at 8:51 PM Nir Soffer <nsoffer@redhat.com> wrote:
________ 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?
Whatever the reason, this fixes the build: https://gerrit.ovirt.org/c/96928/ Green again: https://travis-ci.org/nirs/vdsm/builds/480043578
Nir
participants (1)
-
Nir Soffer