File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 22Git Changelog package.
33"""
44
5- __version__ = "0.1.1"
5+ from .build import GitHub , GitLab
6+
7+ __all__ = ["GitHub" , "GitLab" ]
Original file line number Diff line number Diff line change 1- import gitolog
1+ import git_changelog
22
33text = """
44This is the subject #1
2424
2525
2626def test_github_issue_parsing ():
27- github = gitolog .GitHub ("pawamoy" , "gitolog " )
27+ github = git_changelog .GitHub ("pawamoy" , "git-changelog " )
2828 for ref in github .REF .keys ():
2929 refs = github .get_refs (ref , text )
3030 print ("\n " .join (map (str , refs )))
3131
3232
3333def test_gitlab_issue_parsing ():
34- gitlab = gitolog .GitLab ("pawamoy" , "gitolog " )
34+ gitlab = git_changelog .GitLab ("pawamoy" , "git-changelog " )
3535 for ref in gitlab .REF .keys ():
3636 refs = gitlab .get_refs (ref , text )
3737 print ("\n " .join (map (str , refs )))
You can’t perform that action at this time.
0 commit comments