Skip to content

Commit

Permalink
fix(backup_test): add missing 'Integration' suffix to tests
Browse files Browse the repository at this point in the history
Some tests were missing the Integration suffix in their names.
This resulted in not including them in the 'make pkg-integration-test'
command used when running tests on gh actions.
  • Loading branch information
Michal-Leszczynski committed Dec 17, 2024
1 parent ad742f6 commit f371ebc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/service/backup/service_backup_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2462,7 +2462,7 @@ func TestBackupAlternatorIntegration(t *testing.T) {
}
}

func TestBackupViews(t *testing.T) {
func TestBackupViewsIntegration(t *testing.T) {
const (
testBucket = "backuptest-views"
testKeyspace = "backuptest_views"
Expand Down Expand Up @@ -2547,7 +2547,7 @@ func TestBackupViews(t *testing.T) {
}
}

func TestBackupSkipSchema(t *testing.T) {
func TestBackupSkipSchemaIntegration(t *testing.T) {
const (
testBucket = "backuptest-skip-schema"
testKeyspace = "backuptest_skip_schema"
Expand Down
3 changes: 1 addition & 2 deletions pkg/service/backup/service_deduplicate_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"github.com/scylladb/scylla-manager/v3/pkg/util/uuid"
)

func TestBackupPauseResumeOnDeduplicationStage(t *testing.T) {
func TestBackupPauseResumeOnDeduplicationStageIntegration(t *testing.T) {
const (
testBucket = "backuptest-deduplication"
testKeyspace = "backuptest_deduplication"
Expand Down Expand Up @@ -160,5 +160,4 @@ func TestBackupPauseResumeOnDeduplicationStage(t *testing.T) {
t.Fatalf("Expected uploaded 0 bytes on delta 0 backup, but was %v", totalUploaded)
}
}()

}

0 comments on commit f371ebc

Please sign in to comment.