Skip to content

Commit

Permalink
Removed accidental skips
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ratushnyy committed Jan 10, 2024
1 parent 4c25e0a commit f361b83
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ async def test_only_leader_can_set_while_all_can_read_password_secret(ops_test:
assert password2 == password


@pytest.mark.skip("skip")
async def test_reset_and_get_password_secret_same_as_cli(ops_test: OpsTest) -> None:
"""Test verifies that we can set and retrieve the correct password using Juju 3.x secrets."""
new_password = str(uuid4())
Expand Down Expand Up @@ -243,7 +242,6 @@ async def test_reset_and_get_password_secret_same_as_cli(ops_test: OpsTest) -> N
assert data[secret_id]["content"]["Data"]["monitor-password"] == password


@pytest.mark.skip("skip")
async def test_empty_password(ops_test: OpsTest) -> None:
"""Test that the password can't be set to an empty string."""
leader_id = await get_leader_id(ops_test)
Expand All @@ -256,7 +254,6 @@ async def test_empty_password(ops_test: OpsTest) -> None:
assert password1 == password2


@pytest.mark.skip("skip")
async def test_no_password_change_on_invalid_password(ops_test: OpsTest) -> None:
"""Test that in general, there is no change when password validation fails."""
leader_id = await get_leader_id(ops_test)
Expand All @@ -270,7 +267,6 @@ async def test_no_password_change_on_invalid_password(ops_test: OpsTest) -> None
assert password1 == password2


@pytest.mark.skip("skip")
async def test_exactly_one_primary_reported_by_juju(ops_test: OpsTest) -> None:
"""Tests that there is exactly one replica set primary unit reported by juju."""

Expand Down

0 comments on commit f361b83

Please sign in to comment.