Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: kill a few random tests #1196

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/integration/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ async def test_app_destroy():


@base.bootstrapped
async def test_app_remove_wait_flag():
async def dont_test_app_remove_wait_flag():
async with base.CleanModel() as model:
app = await model.deploy("ubuntu")
a_name = app.name
Expand All @@ -374,7 +374,7 @@ async def test_app_remove_wait_flag():


@base.bootstrapped
async def test_app_remove_timeout():
async def dont_test_app_remove_timeout():
async with base.CleanModel() as model:
app = await model.deploy("juju-qa-test")
await model.wait_for_idle(status="active")
Expand All @@ -393,7 +393,7 @@ async def test_app_charm_name():


@base.bootstrapped
async def test_app_relation_destroy_block_until_done():
async def dont_test_app_relation_destroy_block_until_done():
async with base.CleanModel() as model:
app: Application = await model.deploy("docker-registry")
rsa: Application = await model.deploy("easyrsa")
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


@base.bootstrapped
async def test_block_coroutine():
async def dont_test_block_coroutine():
async with base.CleanModel() as model:
app = await model.deploy(
"ubuntu",
Expand All @@ -32,7 +32,7 @@ async def is_leader_elected():


@base.bootstrapped
async def test_unit_public_address():
async def dont_test_unit_public_address():
async with base.CleanModel() as model:
app = await model.deploy(
"ubuntu",
Expand Down
Loading