Skip to content

Commit 982d3af

Browse files
committed
fix: Skip Bitbucket Datacenter tests temporarily
The Bitbucket Datacenter tests were skipped because the Bitbucket infrastructure is currently unavailable. This commit adds skip directives to the relevant test functions.
1 parent c3e12c3 commit 982d3af

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

test/bitbucket_datacenter_dynamic_variables_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import (
2020
)
2121

2222
func TestBitbucketDataCenterDynamicVariables(t *testing.T) {
23+
t.Skip("skipping test for now, until we ge the bitbucket infra back")
2324
targetNS := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("pac-e2e-ns")
2425
ctx := context.Background()
2526
bitbucketWSOwner := os.Getenv("TEST_BITBUCKET_SERVER_E2E_REPOSITORY")

test/bitbucket_datacenter_pull_request_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
)
1818

1919
func TestBitbucketDataCenterPullRequest(t *testing.T) {
20+
t.Skip("skipping test for now, until we ge the bitbucket infra back")
2021
targetNS := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("pac-e2e-ns")
2122
ctx := context.Background()
2223
bitbucketWSOwner := os.Getenv("TEST_BITBUCKET_SERVER_E2E_REPOSITORY")
@@ -48,6 +49,7 @@ func TestBitbucketDataCenterPullRequest(t *testing.T) {
4849
}
4950

5051
func TestBitbucketDataCenterCELPathChangeInPullRequest(t *testing.T) {
52+
t.Skip("skipping test for now, until we ge the bitbucket infra back")
5153
targetNS := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("pac-e2e-ns")
5254
ctx := context.Background()
5355
bitbucketWSOwner := os.Getenv("TEST_BITBUCKET_SERVER_E2E_REPOSITORY")

test/bitbucket_datacenter_push_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
)
2020

2121
func TestBitbucketDataCenterCELPathChangeOnPush(t *testing.T) {
22+
t.Skip("skipping test for now, until we ge the bitbucket infra back")
2223
targetNS := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("pac-e2e-ns")
2324
ctx := context.Background()
2425
bitbucketWSOwner := os.Getenv("TEST_BITBUCKET_SERVER_E2E_REPOSITORY")

0 commit comments

Comments
 (0)