We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3ffc8 commit bacda95Copy full SHA for bacda95
tests/integration/test_main.py
@@ -936,17 +936,16 @@ def test_action__pull_request__diff_too_large(
936
output_file,
937
summary_file,
938
git,
939
- get_logs
+ get_logs,
940
):
941
"""Test that when the diff is too large, a warning is shown in the comment."""
942
session.register("GET", "/repos/py-cov-action/foobar")(
943
json={"default_branch": "main", "visibility": "public"}
944
)
945
# No existing badge in this test
946
- session.register(
947
- "GET",
948
- "/repos/py-cov-action/foobar/contents/data.json"
949
- )(status_code=404)
+ session.register("GET", "/repos/py-cov-action/foobar/contents/data.json")(
+ status_code=404
+ )
950
951
# Who am I
952
session.register("GET", "/user")(json={"login": "foo"})
0 commit comments