Skip to content

Commit

Permalink
Merge pull request cockroachdb#99893 from healthy-pod/acceptance-timeout
Browse files Browse the repository at this point in the history
Merging as per CREQ-839
  • Loading branch information
knz authored Mar 29, 2023
2 parents 7d796b1 + 977559b commit 7b44120
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/acceptance/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ go_test(
"debug_remote_test.go",
"main_test.go",
],
args = ["-test.timeout=3595s"],
# Note: we overide bazel timeout to 1800s using test_timeout.
args = ["-test.timeout=1795s"],
data = glob([
"testdata/**",
"compose/**",
Expand Down
2 changes: 2 additions & 0 deletions pkg/cmd/generate-bazel-extra/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,8 @@ func excludeReallyEnormousTargets(targets []string) []string {
for _, toExclude := range []string{
"//pkg/ccl/sqlitelogictestccl",
"//pkg/sql/sqlitelogictest",
// acceptance is excluded because it's an integration test.
"//pkg/acceptance",
} {
if strings.HasPrefix(targets[i], toExclude) {
excluded = true
Expand Down

0 comments on commit 7b44120

Please sign in to comment.