This commit is contained in:
Łukasz Magiera 2022-11-15 22:22:25 +01:00
parent 211712bf6d
commit 7512f82a8d
2 changed files with 10 additions and 3 deletions

View File

@ -953,6 +953,11 @@ workflows:
suite: itest-worker suite: itest-worker
target: "./itests/worker_test.go" target: "./itests/worker_test.go"
- test:
name: test-itest-worker_upgrade
suite: itest-worker_upgrade
target: "./itests/worker_upgrade_test.go"
- test: - test:
name: test-unit-cli name: test-unit-cli
suite: utest-unit-cli suite: utest-unit-cli

View File

@ -3,15 +3,17 @@ package itests
import ( import (
"context" "context"
"fmt" "fmt"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/filecoin-project/lotus/api" "github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/itests/kit" "github.com/filecoin-project/lotus/itests/kit"
"github.com/filecoin-project/lotus/node/config" "github.com/filecoin-project/lotus/node/config"
sealing "github.com/filecoin-project/lotus/storage/pipeline" sealing "github.com/filecoin-project/lotus/storage/pipeline"
"github.com/filecoin-project/lotus/storage/sealer/sealtasks" "github.com/filecoin-project/lotus/storage/sealer/sealtasks"
"github.com/filecoin-project/lotus/storage/sealer/storiface" "github.com/filecoin-project/lotus/storage/sealer/storiface"
"github.com/stretchr/testify/require"
"testing"
"time"
) )
func TestWorkerUpgradeAbortCleanup(t *testing.T) { func TestWorkerUpgradeAbortCleanup(t *testing.T) {