]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Port test_db_api to Python 3
authorVictor Stinner <vstinner@redhat.com>
Mon, 29 Jun 2015 13:11:12 +0000 (15:11 +0200)
committerVictor Stinner <vstinner@redhat.com>
Tue, 30 Jun 2015 13:32:08 +0000 (15:32 +0200)
commit4fa03be2ba50f65f9eab4857bacf5f77778d0c67
tree911ebec56f27edfa406db22936837a03b4fcf7ea
parentab2b966ea1ee2a268f65dc17d8c33477c3def271
Port test_db_api to Python 3

* _dict_from_object(): on dictionaries, call the items() method instead
  of iteritems() method. oslo.db objects have no items() method yet, so
  check the object type to decide which method should be called.
* test_db_api: fix usage of db.quota_reserve(), quotas dictionary values
  must be integers (hard limit of quotas), not Quota instances of
  cinder.db.sqlalchemy.models.
* tox.ini:  add the following tests to Python 3.4

  - cinder.tests.unit.test_db_api
  - cinder.tests.unit.test_quota

Blueprint cinder-python3
Change-Id: I93f5e0f2fe34c9a6c135f34d64ec068c5696032d
cinder/tests/unit/test_db_api.py
tox.ini