From b51c3ab2ea4763dadf0133d236283d298c86b802 Mon Sep 17 00:00:00 2001 From: Simon Richardson Date: Fri, 16 Oct 2020 11:19:50 +0100 Subject: [PATCH] agent-stream isn't honoured with upgrade-juju This acceptance test expected that you can go from released stream to devel stream using upgrade-juju --agent-stream devel. That isn't the case and so the test is a bad test. There are numerous bugs around this so we should really fix this at some point: - https://bugs.launchpad.net/juju/+bug/1742342 - https://bugs.launchpad.net/juju/+bug/1863179 - https://bugs.launchpad.net/juju/+bug/1875567 - https://bugs.launchpad.net/juju/+bug/1879573 --- acceptancetests/assess_upgrade.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/acceptancetests/assess_upgrade.py b/acceptancetests/assess_upgrade.py index e18fc1b0e26..83789b63a3b 100755 --- a/acceptancetests/assess_upgrade.py +++ b/acceptancetests/assess_upgrade.py @@ -258,7 +258,11 @@ def main(argv=None): ) assess_upgrade_from_stable_to_develop(args, stable_bsm, devel_client) - assess_upgrade_passing_agent_stream(args, devel_client) + + # LP:1742342 Moving from released stream to devel stream doesn't work, + # because upgrade-juju doesn't honour --agent-stream over the model-config. + # + # assess_upgrade_passing_agent_stream(args, devel_client) return 0