Updated docstring for test_sql_upgrade.py

The docstring at [1] references usage of backend_sql.conf, which is no
longer used by the tests.  The tests are using oslo.db unit tests base.
This patchset updates the docstring and places a reference to [2].

[1] https://github.com/openstack/keystone/blob/master/keystone/tests/unit/test_sql_upgrade.py#L14-L32
[2] http://docs.openstack.org/developer/oslo.db/contributing.html#how-to-run-unit-tests

Change-Id: Ifc3cb8c2a57c83a44408be5771a88f141d6b31e5
Closes-Bug: #1654659
This commit is contained in:
Tin Lam 2017-01-07 22:46:05 -06:00
parent 49b3082e18
commit d42bb2da67
1 changed files with 10 additions and 3 deletions

View File

@ -16,13 +16,20 @@ Test for SQL migration extensions.
To run these tests against a live database:
1. Modify the file ``keystone/tests/unit/config_files/backend_sql.conf`` to use
the connection for your live database.
2. Set up a blank, live database
1. Set up a blank, live database.
2. Export database information to environment variable
``OS_TEST_DBAPI_ADMIN_CONNECTION``. For example::
export OS_TEST_DBAPI_ADMIN_CONNECTION=postgresql://localhost/postgres?host=
/var/folders/7k/pwdhb_mj2cv4zyr0kyrlzjx40000gq/T/tmpMGqN8C&port=9824
3. Run the tests using::
tox -e py27 -- keystone.tests.unit.test_sql_upgrade
For further information, see `oslo.db documentation
<http://docs.openstack.org/developer/oslo.db/contributing.html#how-to-run-unit-tests>`_.
WARNING::
Your database will be wiped.