File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ def config():
1313 return _config
1414
1515
16- @pytest .fixture () # type: ignore
16+ @pytest .fixture ()
1717def changelog_path () -> str :
1818 return os .path .join (os .getcwd (), "CHANGELOG.md" )
1919
2020
21- @pytest .fixture () # type: ignore
21+ @pytest .fixture ()
2222def config_path () -> str :
2323 return os .path .join (os .getcwd (), "pyproject.toml" )
Original file line number Diff line number Diff line change 469469]
470470
471471
472- @pytest .fixture # type: ignore
472+ @pytest .fixture
473473def gitcommits () -> list :
474474 commits = [
475475 git .GitCommit (
@@ -484,13 +484,13 @@ def gitcommits() -> list:
484484 return commits
485485
486486
487- @pytest .fixture # type: ignore
487+ @pytest .fixture
488488def tags () -> list :
489489 tags = [git .GitTag (* tag ) for tag in TAGS ]
490490 return tags
491491
492492
493- @pytest .fixture # type: ignore
493+ @pytest .fixture
494494def changelog_content () -> str :
495495 changelog_path = "tests/CHANGELOG_FOR_TEST.md"
496496 with open (changelog_path , "r" ) as f :
Original file line number Diff line number Diff line change 2525"""
2626
2727
28- @pytest .fixture # type: ignore
28+ @pytest .fixture
2929def changelog_content () -> str :
3030 changelog_path = "tests/CHANGELOG_FOR_TEST.md"
3131 with open (changelog_path , "r" ) as f :
You can’t perform that action at this time.
0 commit comments