summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/source/contributor/ironic-boot-from-volume.rst3
-rw-r--r--ironic/cmd/status.py2
-rw-r--r--test-requirements.txt2
3 files changed, 3 insertions, 4 deletions
diff --git a/doc/source/contributor/ironic-boot-from-volume.rst b/doc/source/contributor/ironic-boot-from-volume.rst
index fc3fd1c2b..673a189be 100644
--- a/doc/source/contributor/ironic-boot-from-volume.rst
+++ b/doc/source/contributor/ironic-boot-from-volume.rst
@@ -125,7 +125,8 @@ You can also run an integration test that an instance is booted from a remote
volume with tempest in the environment::
cd /opt/stack/tempest
- tox -e all-plugin -- ironic_tempest_plugin.tests.scenario.test_baremetal_boot_from_volume
+ tox -e venv-tempest -- pip install (path to the ironic-tempest-plugin directory)
+ tox -e all -- ironic_tempest_plugin.tests.scenario.test_baremetal_boot_from_volume
Please note that the storage interface will only indicate errors based upon
the state of the node and the configuration present. As such a node does not
diff --git a/ironic/cmd/status.py b/ironic/cmd/status.py
index 84a564c17..d395b985b 100644
--- a/ironic/cmd/status.py
+++ b/ironic/cmd/status.py
@@ -103,8 +103,6 @@ class Checks(upgradecheck.UpgradeCommands):
return upgradecheck.Result(upgradecheck.Code.SUCCESS)
res = engine.execute("show create table allocations")
results = str(res.all()).lower()
- print('####################################################33')
- print(results)
if 'utf8' not in results:
msg = ('The Allocations table is is not using UTF8 encoding. '
'This is corrected in later versions of Ironic, where '
diff --git a/test-requirements.txt b/test-requirements.txt
index bd29d9394..0c4bdb0ca 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -11,7 +11,7 @@ oslo.reports>=1.18.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0
stestr>=2.0.0 # Apache-2.0
psycopg2>=2.8.5 # LGPL/ZPL
-testtools>=2.2.0 # MIT
+testtools>=2.5.0 # MIT
WebTest>=2.0.27 # MIT
pysnmp>=4.4.12
bandit!=1.6.0,>=1.1.0,<2.0.0 # Apache-2.0