diff --git a/charmcraft.yaml b/charmcraft.yaml index f4f5041..d84d87f 100644 --- a/charmcraft.yaml +++ b/charmcraft.yaml @@ -45,6 +45,9 @@ peers: replicas: interface: git_ubuntu_primary_info +links: + documentation: https://discourse.charmhub.io/t/git-ubuntu-operator-documentation/19098 + config: options: controller_port: diff --git a/tests/integration/test_charm.py b/tests/integration/test_charm.py index ca5dadb..b8cc4bc 100644 --- a/tests/integration/test_charm.py +++ b/tests/integration/test_charm.py @@ -22,9 +22,9 @@ def test_service_status(app: str, juju: jubilant.Juju): app: The app in charge of this unit. juju: The juju model in charge of the app. """ - # Wait until machine is ready, then wait an extra 30 seconds for services to fully activate. + # Wait until machine is ready, then wait an extra 60 seconds for services to fully activate. juju.wait(jubilant.all_active) - sleep(30) + sleep(60) def get_services_dict(unit_name: str, juju: jubilant.Juju) -> dict[str, dict[str, bool | str]]: """Get a dictionary of running systemd services on the app's unit.