Re: [openstack-dev] [neutron][lbaas] Invalid import in tempest v2 api tests

2015-03-23 Thread Doug Wiegley
Hi Vijay, That works because we pin the version of tempest that we run against, via tox. If you're using devstack-gate in your CI, note the two hooks found here: https://github.com/openstack/neutron-lbaas/blob/master/neutron_lbaas/tests/contrib/ If not, you need to mimic the behavior of the

[openstack-dev] [neutron][lbaas] Invalid import in tempest v2 api tests

2015-03-20 Thread Vijay Venkatachalam
Hi: The LBaaS API tests are failing to run because test_pools.py(and other tests as well) are importing data_utils from tempest.common.utils. Looks like data_utils is moved to tempest_lib now and the API tests need to change to import from tempest_lib. Is someone tracking this? We are