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

Disable compact certs and auction tests #2254

Merged
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
3 changes: 3 additions & 0 deletions test/e2e-go/features/auction/auctionCancel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
)

func TestStartAndCancelAuctionNoBids(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if testing.Short() {
t.Skip()
}
Expand Down Expand Up @@ -58,6 +59,7 @@ func TestStartAndCancelAuctionNoBids(t *testing.T) {
}

func TestStartAndCancelAuctionOneUserTenBids(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down Expand Up @@ -121,6 +123,7 @@ func TestStartAndCancelAuctionOneUserTenBids(t *testing.T) {
}

func TestStartAndCancelAuctionEarlyOneUserTenBids(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
t.Parallel()
r := require.New(fixtures.SynchronizedTest(t))
var fixture fixtures.AuctionFixture
Expand Down
4 changes: 4 additions & 0 deletions test/e2e-go/features/auction/auctionErrors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import (
)

func TestInvalidDeposit(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if testing.Short() {
t.Skip()
}
Expand Down Expand Up @@ -119,6 +120,7 @@ func TestInvalidDeposit(t *testing.T) {
}

func TestNoDepositAssociatedWithBid(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if testing.Short() {
t.Skip()
}
Expand Down Expand Up @@ -190,6 +192,7 @@ func TestNoDepositAssociatedWithBid(t *testing.T) {
}

func TestDeadbeatBid(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
// an error is expected when an account attempts to overbid
t.Parallel()
r := require.New(fixtures.SynchronizedTest(t))
Expand Down Expand Up @@ -283,6 +286,7 @@ func unpartitionNetwork(fixture *fixtures.AuctionFixture, r *require.Assertions)
}

func TestStartAndPartitionAuctionTenUsersTenBidsEach(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down
6 changes: 6 additions & 0 deletions test/e2e-go/features/auction/basicAuction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func detectAuctionCannotProceed(r *require.Assertions, params auction.Params, la
}

func TestStartAndEndAuctionNoBids(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down Expand Up @@ -77,6 +78,7 @@ func TestStartAndEndAuctionNoBids(t *testing.T) {
}

func TestStartAndEndAuctionOneUserOneBid(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down Expand Up @@ -146,6 +148,7 @@ func TestStartAndEndAuctionOneUserOneBid(t *testing.T) {
}

func TestStartAndEndAuctionOneUserTenBids(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down Expand Up @@ -221,6 +224,7 @@ func TestStartAndEndAuctionOneUserTenBids(t *testing.T) {
}

func TestStartAndEndAuctionTenUsersOneBidEach(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
t.Parallel()
r := require.New(fixtures.SynchronizedTest(t))
var fixture fixtures.AuctionFixture
Expand Down Expand Up @@ -313,6 +317,7 @@ func TestStartAndEndAuctionTenUsersOneBidEach(t *testing.T) {
}

func TestStartAndEndAuctionTenUsersTenBidsEach(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down Expand Up @@ -410,6 +415,7 @@ func TestStartAndEndAuctionTenUsersTenBidsEach(t *testing.T) {
}

func TestDecayingPrice(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
if runtime.GOOS == "darwin" {
t.Skip()
}
Expand Down
1 change: 1 addition & 0 deletions test/e2e-go/features/compactcert/compactcert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import (
)

func TestCompactCerts(t *testing.T) {
t.Skip("Disabling since they need work and shouldn't block releases")
t.Parallel()
r := require.New(fixtures.SynchronizedTest(t))

Expand Down