Skip to content

Commit

Permalink
test: skip TestAcc_ResourceApplication_StorageLXD
Browse files Browse the repository at this point in the history
  • Loading branch information
anvial committed Oct 15, 2024
1 parent 2144b04 commit 4759d33
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/provider/resource_application_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,13 @@ func TestAcc_ResourceApplication_UpdateEndpointBindings(t *testing.T) {
})
}

// NOTE: We should skip this test because we observe the (potential) race in Juju provisioner.
// This race prevent us from destroying the machines (0, lxd:0) after the test is done.
// That was not visible until we re-design of how we check the model destroy in TF provider.
// But actually after this test the model dangling forever. This behavior is not reproduced
// if to deploy scenario manually (via Juju CLI).
func TestAcc_ResourceApplication_StorageLXD(t *testing.T) {
t.Skip("Skip this test until the issue is fixed")
if testingCloud != LXDCloudTesting {
t.Skip(t.Name() + " only runs with LXD")
}
Expand Down

0 comments on commit 4759d33

Please sign in to comment.