Skip to content

Commit 41af669

Browse files
committed
Adds tmate to debug
Signed-off-by: Zaki Shaikh <[email protected]>
1 parent 77624f4 commit 41af669

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/kind-e2e-tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ jobs:
8686
"${{ secrets.TEST_GITHUB_SECOND_TOKEN }}" \
8787
"${{ secrets.GITLAB_TOKEN }}"
8888
89+
# - uses: actions/checkout@v4
90+
- name: Setup tmate session
91+
uses: mxschmitt/action-tmate@v3
92+
8993
- name: Run E2E Tests on nightly
9094
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
9195
run: |
@@ -118,4 +122,4 @@ jobs:
118122
status: ${{ job.status }}
119123
notify_when: "failure"
120124
env:
121-
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
125+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

hack/gh-workflow-ci.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ run_e2e_tests() {
109109
export TEST_GITHUB_SECOND_TOKEN="${test_github_second_token}"
110110

111111
export TEST_GITLAB_API_URL="https://gitlab.com"
112-
export TEST_GITLAB_PROJECT_ID="34405323"
112+
export TEST_GITLAB_PROJECT_ID="62404501"
113113
export TEST_GITLAB_TOKEN=${gitlab_token}
114114
# https://gitlab.com/gitlab-com/alliances/ibm-red-hat/sandbox/openshift-pipelines/pac-e2e-tests
115-
make test-e2e
115+
go test -tags=e2e ./test/ -v -run ^TestGitlabDeleteTagEvent$
116116
}
117117

118118
collect_logs() {

test/bitbucket_cloud_pullrequest_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import (
1515
)
1616

1717
func TestBitbucketCloudPullRequest(t *testing.T) {
18+
t.Skip("Skipping for my test")
1819
targetNS := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("pac-e2e-ns")
1920
ctx := context.Background()
2021

0 commit comments

Comments
 (0)