Re: [openstack-dev] [neutron][db] Need help resolving a strange error with db connections in tests

2014-09-12 Thread Anna Kamyshnikova
Kevin Benton Thank you very much!!! I lost hope to find a way to fix these tests! Regards, Ann Kamyshnikova On Fri, Sep 12, 2014 at 5:17 PM, Kevin Benton wrote: > This one was tricky. :-) > > This failure can be produced consistently by running the following two > tests: > > neutron.tests.unit

Re: [openstack-dev] [neutron][db] Need help resolving a strange error with db connections in tests

2014-09-12 Thread Kevin Benton
This one was tricky. :-) This failure can be produced consistently by running the following two tests: neutron.tests.unit.brocade.test_brocade_plugin.TestBrocadePortsV2.test_delete_network_port_exists_owned_by_network neutron.tests.unit.db.test_migration.TestModelsMigrationsSyncMl2Psql.test_models

Re: [openstack-dev] [neutron][db] Need help resolving a strange error with db connections in tests

2014-09-12 Thread Anna Kamyshnikova
This is implementing ModelsMigrationsSync test from oslo [1]. For running it locally on Postgres you have to do the following things (it is mentioned in comments to test): For the opportunistic testing you need to set up a db named 'openstack_citest' with user 'openstack_citest' and password

Re: [openstack-dev] [neutron][db] Need help resolving a strange error with db connections in tests

2014-09-12 Thread Kevin Benton
Can you explain a bit about that test? I'm having trouble reproducing it. On the system (upstream Jenkins) that it's failing on, is postgres available with that database? On Thu, Sep 11, 2014 at 7:07 AM, Anna Kamyshnikova < akamyshnik...@mirantis.com> wrote: > Hello everyone! > > I'm working on i

[openstack-dev] [neutron][db] Need help resolving a strange error with db connections in tests

2014-09-11 Thread Anna Kamyshnikova
Hello everyone! I'm working on implementing test in Neutron that checks that models are synchronized with database state [1] [2]. This is very important change as during Juno cycle big changes of database structure were done. I was working on it for rather long time but about three weeks ago stra