-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Now all juju 3 will use 3/stable snap release - Update functional test to run all the supported versions by zaza - Drop bionic support
- Loading branch information
Showing
10 changed files
with
41 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
charmhelpers | ||
packaging | ||
# pin ops framework version to | ||
# support bionic deployments | ||
ops >= 1.5.0,< 2.0.0 | ||
ops |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,33 +80,37 @@ deps = | |
setenv = | ||
TEST_JUJU_CHANNEL = 2.9/stable | ||
changedir = {toxinidir}/tests/functional | ||
commands = functest-run-suite | ||
commands = functest-run-suite {posargs:--keep-faulty-model} | ||
deps = | ||
git+https://github.com/openstack-charmers/zaza.git#egg=zaza | ||
-r {toxinidir}/tests/functional/requirements.txt | ||
|
||
[testenv:func33-jammy] | ||
[testenv:func31] | ||
setenv = | ||
TEST_JUJU_CHANNEL = 3.3/stable | ||
changedir = {toxinidir}/tests/functional | ||
commands = | ||
# NOTE(mertkirpici): functest-run-suite -b jammy focal | ||
# or functest-run-suite -b jammy -b focal does not work | ||
# https://github.com/openstack-charmers/zaza/issues/614 | ||
functest-run-suite -b jammy | ||
functest-run-suite {posargs:--keep-faulty-model} | ||
deps = | ||
git+https://github.com/openstack-charmers/[email protected]#egg=zaza[juju-33] | ||
git+https://github.com/openstack-charmers/[email protected]#egg=zaza[juju-31] | ||
-r {toxinidir}/tests/functional/requirements.txt | ||
|
||
[testenv:func32] | ||
setenv = | ||
TEST_JUJU_CHANNEL = 3.3/stable | ||
changedir = {toxinidir}/tests/functional | ||
commands = | ||
functest-run-suite {posargs:--keep-faulty-model} | ||
deps = | ||
git+https://github.com/openstack-charmers/[email protected]#egg=zaza[juju-32] | ||
-r {toxinidir}/tests/functional/requirements.txt | ||
|
||
[testenv:func33-focal] | ||
[testenv:func33] | ||
setenv = | ||
TEST_JUJU_CHANNEL = 3.3/stable | ||
changedir = {toxinidir}/tests/functional | ||
commands = | ||
# NOTE(mertkirpici): functest-run-suite -b jammy focal | ||
# or functest-run-suite -b jammy -b focal does not work | ||
# https://github.com/openstack-charmers/zaza/issues/614 | ||
functest-run-suite -b focal | ||
functest-run-suite {posargs:--keep-faulty-model} | ||
deps = | ||
git+https://github.com/openstack-charmers/[email protected]#egg=zaza[juju-33] | ||
-r {toxinidir}/tests/functional/requirements.txt |