File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ def config():
13
13
return _config
14
14
15
15
16
- @pytest .fixture () # type: ignore
16
+ @pytest .fixture ()
17
17
def changelog_path () -> str :
18
18
return os .path .join (os .getcwd (), "CHANGELOG.md" )
19
19
20
20
21
- @pytest .fixture () # type: ignore
21
+ @pytest .fixture ()
22
22
def config_path () -> str :
23
23
return os .path .join (os .getcwd (), "pyproject.toml" )
Original file line number Diff line number Diff line change 469
469
]
470
470
471
471
472
- @pytest .fixture # type: ignore
472
+ @pytest .fixture
473
473
def gitcommits () -> list :
474
474
commits = [
475
475
git .GitCommit (
@@ -484,13 +484,13 @@ def gitcommits() -> list:
484
484
return commits
485
485
486
486
487
- @pytest .fixture # type: ignore
487
+ @pytest .fixture
488
488
def tags () -> list :
489
489
tags = [git .GitTag (* tag ) for tag in TAGS ]
490
490
return tags
491
491
492
492
493
- @pytest .fixture # type: ignore
493
+ @pytest .fixture
494
494
def changelog_content () -> str :
495
495
changelog_path = "tests/CHANGELOG_FOR_TEST.md"
496
496
with open (changelog_path , "r" ) as f :
Original file line number Diff line number Diff line change 25
25
"""
26
26
27
27
28
- @pytest .fixture # type: ignore
28
+ @pytest .fixture
29
29
def changelog_content () -> str :
30
30
changelog_path = "tests/CHANGELOG_FOR_TEST.md"
31
31
with open (changelog_path , "r" ) as f :
You can’t perform that action at this time.
0 commit comments