File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ def add_change(typ: ChangeType = "change"):
20
20
change = get_change (owner , repo , issue )
21
21
content = quote (f"{ change .name } \n " )
22
22
run (
23
- split ( # noqa: S603
24
- f"""towncrier create --content { content } { change .id } .{ typ } .md"""
25
- ),
23
+ split (f"""towncrier create --content { content } { change .id } .{ typ } .md""" ),
26
24
check = True ,
27
25
)
28
26
@@ -96,7 +94,7 @@ def query_gh_issue(
96
94
) -> dict [str , Any ]:
97
95
"""Query GitHub for an issue."""
98
96
result = run (
99
- [ # noqa: S607, S603
97
+ [ # noqa: S607
100
98
"gh" ,
101
99
"api" ,
102
100
"graphql" ,
Original file line number Diff line number Diff line change 5
5
from boilerdaq .daq import Looper
6
6
7
7
8
- @pytest .mark .slow ()
8
+ @pytest .mark .slow
9
9
def test_stages (looper : Looper ):
10
10
"""Test stages."""
11
11
looper .start ()
You can’t perform that action at this time.
0 commit comments