Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-15677 cq: remove reference to required-githooks #451

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions vars/selfUnitTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,16 @@ Skip-PR-comments: true
My-pragma1: val1
My-pragma2: val2 val2

Required-githooks: true

Signed-off-by: Brian J. Murrell <[email protected]>'''
String commit_message = commit_title + '\n\n' + commit_desc + '\n\n' + commit_pragmas

Map expected_map = [
'skip-build': 'true', 'skip-pr-comments': 'true',
'my-pragma1': 'val1', 'my-pragma2': 'val2 val2',
'required-githooks': 'true',
'signed-off-by': 'Brian J. Murrell <[email protected]>']
String expected_str = '{skip-build=true, skip-pr-comments=true, ' +
'my-pragma1=val1, my-pragma2=val2 val2, ' +
'required-githooks=true, signed-off-by=Brian J. Murrell <[email protected]>}'
'signed-off-by=Brian J. Murrell <[email protected]>}'

println('Test pragmasToMap')

Expand Down