diff options
author | James Falcon <TheRealFalcon@users.noreply.github.com> | 2020-11-19 11:54:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 12:54:35 -0500 |
commit | 9707a08a82161cd4129f6cdd10978cde50bea747 (patch) | |
tree | 7ace18165737d19e48eee144d23f36eb9333fe9b /tests/integration_tests/conftest.py | |
parent | bfaee8cc9b8fd23dbc118ae548fc2ca695a0d707 (diff) | |
download | vyos-cloud-init-9707a08a82161cd4129f6cdd10978cde50bea747.tar.gz vyos-cloud-init-9707a08a82161cd4129f6cdd10978cde50bea747.zip |
Make mount in place for tests work (#667)
IMAGE_SOURCE = 'IN_PLACE' wasn't working previously. Replaced
LXD launch with an init, then mount, then start.
Diffstat (limited to 'tests/integration_tests/conftest.py')
-rw-r--r-- | tests/integration_tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_tests/conftest.py b/tests/integration_tests/conftest.py index eacb2ae2..e31a9192 100644 --- a/tests/integration_tests/conftest.py +++ b/tests/integration_tests/conftest.py @@ -81,7 +81,7 @@ def setup_image(session_cloud): if session_cloud.datasource != 'lxd_container': raise ValueError( 'IN_PLACE as CLOUD_INIT_SOURCE only works for LXD') - # The mount needs to happen after the instance is launched, so + # The mount needs to happen after the instance is created, so # no further action needed here elif integration_settings.CLOUD_INIT_SOURCE == 'PROPOSED': client = session_cloud.launch() |