Skip to content

Commit

Permalink
chore: move to channel 6/stable in mongodb (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciareinoso authored Nov 21, 2024
1 parent dbdc3d3 commit 98d50c0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text())
APP_NAME = METADATA["name"]
DB_CHARM_NAME = "mongodb-k8s"
DB_CHARM_CHANNEL = "6/beta"
DB_CHARM_CHANNEL = "6/stable"
NMS_CHARM_NAME = "sdcore-nms-k8s"
NMS_CHARM_CHANNEL = "1.5/edge"
TLS_CHARM_NAME = "self-signed-certificates"
Expand Down Expand Up @@ -99,19 +99,13 @@ async def test_restore_tls_and_wait_for_active_status(ops_test: OpsTest, deploy)
await ops_test.model.wait_for_idle(apps=[APP_NAME], status="active", timeout=TIMEOUT)


@pytest.mark.skip(
reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218"
)
@pytest.mark.abort_on_fail
async def test_remove_database_and_wait_for_blocked_status(ops_test: OpsTest, deploy):
assert ops_test.model
await ops_test.model.remove_application(DB_CHARM_NAME, block_until_done=True)
await ops_test.model.wait_for_idle(apps=[APP_NAME], status="blocked", timeout=TIMEOUT)


@pytest.mark.skip(
reason="Bug in MongoDB: https://github.com/canonical/mongodb-k8s-operator/issues/218"
)
@pytest.mark.abort_on_fail
async def test_restore_database_and_wait_for_active_status(ops_test: OpsTest, deploy):
assert ops_test.model
Expand Down

0 comments on commit 98d50c0

Please sign in to comment.