Skip to content

Commit 16d0af9

Browse files
committed
Always run this test
1 parent 941ed5d commit 16d0af9

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

internal/testhelpers/tagsuite/tagsuite.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"os"
55
"strings"
66

7-
"github.com/ActiveState/cli/internal/condition"
87
"github.com/stretchr/testify/suite"
98
"github.com/thoas/go-funk"
9+
10+
"github.com/ActiveState/cli/internal/condition"
1011
)
1112

1213
const (
@@ -68,6 +69,7 @@ const (
6869
VSCode = "vscode"
6970
Performance = "performance"
7071
Service = "service"
72+
SoftLimit = "softlimit"
7173
Executor = "executor"
7274
Deprecation = "deprecation"
7375
Compatibility = "compatibility"

test/integration/softlimit_int_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Test several important paths for the soft limit notification to show.
2020
We're not testing all possible paths as it would be too expensive both in terms of testing time as well as maintenance of those tests.
2121
*/
2222
func (suite *SoftLimitIntegrationTestSuite) TestCheckout() {
23-
suite.OnlyRunForTags(tagsuite.SoftLimit)
23+
suite.OnlyRunForTags(tagsuite.SoftLimit, tagsuite.Critical)
2424

2525
ts := e2e.New(suite.T(), true)
2626
defer ts.Close()

0 commit comments

Comments
 (0)