diff --git a/.circleci/config.yml b/.circleci/config.yml index 55d0c4c8f..f80820e73 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1025,6 +1025,11 @@ workflows: suite: itest-sector_terminate target: "./itests/sector_terminate_test.go" + - test: + name: test-itest-sector_unseal + suite: itest-sector_unseal + target: "./itests/sector_unseal_test.go" + - test: name: test-itest-self_sent_txn suite: itest-self_sent_txn diff --git a/itests/sector_unseal_test.go b/itests/sector_unseal_test.go index fc77b8c3e..d3847f590 100644 --- a/itests/sector_unseal_test.go +++ b/itests/sector_unseal_test.go @@ -2,15 +2,18 @@ package itests import ( "context" + "testing" + "time" + + "github.com/stretchr/testify/require" + "github.com/filecoin-project/go-address" "github.com/filecoin-project/go-state-types/abi" + "github.com/filecoin-project/lotus/itests/kit" "github.com/filecoin-project/lotus/node/config" "github.com/filecoin-project/lotus/storage/sealer/sealtasks" "github.com/filecoin-project/lotus/storage/sealer/storiface" - "github.com/stretchr/testify/require" - "testing" - "time" ) func TestUnsealPiece(t *testing.T) {