Skip to content

Commit bd8a774

Browse files
committed
fix: tests not defined as Integration
1 parent f1b9a8f commit bd8a774

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

rolling-shutter/collator/batcher/batcher_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ func TestCloseBatchIntegration(t *testing.T) {
142142
})
143143
}
144144

145-
// TestOpenNextBatch checks that we're able to enqueue transactions for the next batch even though
145+
// TestOpenNextBatchIntegration checks that we're able to enqueue transactions for the next batch even though
146146
// the l2 chain hasn't processed the last block.
147-
func TestOpenNextBatch(t *testing.T) {
147+
func TestOpenNextBatchIntegration(t *testing.T) {
148148
if testing.Short() {
149149
t.Skip("skipping integration test")
150150
}

rolling-shutter/collator/batchhandler/sequencer/mockethserver_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ func newTestConfig(t *testing.T) *config.Config {
2929
}
3030

3131
func TestMockEthIntegration(t *testing.T) {
32+
if testing.Short() {
33+
t.Skip("skipping integration test")
34+
}
3235
cfg := newTestConfig(t)
3336
eth := RunMockEthServer(t)
3437
defer eth.Teardown()

rolling-shutter/mocksequencer/mocksequencer_test/decryption_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func init() {
1818
testlog.Setup()
1919
}
2020

21-
func TestServerDecryption(t *testing.T) {
21+
func TestServerDecryptionIntegration(t *testing.T) {
2222
if testing.Short() {
2323
t.Skip("skipping integration test")
2424
}

0 commit comments

Comments
 (0)