Skip to content

Commit 0891ef1

Browse files
committed
Add some unnecessary type: ignores to some test cases to show that pyright now fails CI
1 parent fd43709 commit 0891ef1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stubs/invoke/@tests/test_cases/check_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ def docker_build(context: Context) -> None:
1313

1414

1515
@task(docker_build)
16-
def docker_push(context: Context) -> None:
16+
def docker_push(context: Context) -> None: # type: ignore
1717
pass

stubs/requests/@tests/test_cases/check_post.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# =================================================================================================
1313

1414

15-
url = "https://httpbin.org/post"
15+
url = "https://httpbin.org/post" # type: ignore
1616
multiple_files = [
1717
("images", ("foo.png", open("foo.png", "rb"), "image/png")),
1818
("images", ("bar.png", open("bar.png", "rb"), "image/png")),

0 commit comments

Comments
 (0)