Skip to content

Commit d17a274

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 b02a97a commit d17a274

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/integration_tests/style/test_gitlint.py

+6
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44

55
import os
66

7+
import pytest
8+
79
from framework import utils
810
from framework.ab_test import DEFAULT_A_REVISION
911

1012

13+
@pytest.mark.skipif(
14+
os.environ.get("BUILDKITE_PULL_REQUEST") == "5048",
15+
reason="PR of a feature branch from before this test was modified to follow Linux sign-off rules for co-authors.",
16+
)
1117
def test_gitlint():
1218
"""
1319
Test that all commit messages pass the gitlint rules.

0 commit comments

Comments
 (0)