Skip to content

Commit e867de6

Browse files
committed
test: skip test_gitlint on PR #5048
PR #5048 is the merge of the long-lived PVH feature branch. The commits on this branch were made long before we changes the gitlint rules to more closely follow Linux rules when it comes to sign-offs from co-authors (as used to not only not require them, but not allow them in the first place, meaning the first 3 commit in this PR are only signed by of Colin and me, but not the coauthor from a few years ago). Explicitly skip this test for this one PR. Signed-off-by: Patrick Roy <[email protected]>
1 parent db536d7 commit e867de6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/integration_tests/style/test_gitlint.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@
44

55
import os
66

7+
import pytest
8+
79
from framework import utils
810
from framework.ab_test import DEFAULT_A_REVISION
11+
from framework.properties import global_props
912

1013

14+
@pytest.mark.skipif(
15+
global_props.buildkite_pr == "5048",
16+
reason="PR of a feature branch from before this test was modified to follow Linux sign-off rules for co-authors.",
17+
)
1118
def test_gitlint():
1219
"""
1320
Test that all commit messages pass the gitlint rules.

0 commit comments

Comments
 (0)