Skip to content

Commit

Permalink
test of my fix for zaza
Browse files Browse the repository at this point in the history
  • Loading branch information
rgildein committed Apr 15, 2024
1 parent 1c12b2f commit dd52899
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
strategy:
fail-fast: false
matrix:
juju-channel: ['3.4/stable']
command: ['TEST_JUJU3=1 make functional'] # using TEST_JUJU3 due https://github.com/openstack-charmers/zaza/commit/af7eea953dd5d74d3d074fe67b5765dca3911ca6
include:
- juju-channel: '3.4/stable'
command: 'TEST_JUJU3=1 make functional' # using TEST_JUJU3 due https://github.com/openstack-charmers/zaza/commit/af7eea953dd5d74d3d074fe67b5765dca3911ca6
- juju-channel: '2.9/stable'
command: 'make functional'
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand All @@ -46,7 +49,6 @@ jobs:
with:
provider: lxd
juju-channel: ${{ matrix.juju-channel }}
lxd-channel: "5.20/stable" # tmp fix until https://github.com/canonical/charmcraft/issues/1640
- name: Show juju information
run: |
juju version
Expand Down
2 changes: 1 addition & 1 deletion src/tests/functional/tests/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def set_ubuntu_password_on_backup_host():
"""Set ubuntu password on backup host."""
command = 'echo "{}" | chpasswd'.format(ubuntu_user_pass)
backup_host_unit = _get_unit("backup-host")
result = zaza.model.run_on_unit(backup_host_unit.name, command, timeout=15)
result = zaza.model.run_on_unit(backup_host_unit.name, command, timeout=60)
_check_run_result(result)


Expand Down

0 comments on commit dd52899

Please sign in to comment.