Hide Forgot
Cloned from launchpad blueprint https://blueprints.launchpad.net/oslo/+spec/tests-given-db-backend. Description: The DB API tests run only on SQLite engine. DB API have engine specific bugs and features. Furthermore on production very rarely using SQLite but more often it is MySQL and PostgreSQL engines. So current API can have untested side effects on different DB backends. Thus at testing specific bug fixes and features required to run tests with different backends. Could be solved in two different ways. First way: user defined database admin uri contained in env variable used to get database access, temporary test database created at every test run, backend specific tests skips at inappropriate backends. Second way: backend specific test cases must be inherited from special test case which use concrete backend for all defined tests, using default ci database aka "openstack_citest". Inspired by: https://review.openstack.org/#/c/33236/ Specification URL (additional information): None