File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
tests/test_tutorial/test_request_files Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ test = [
50
50
" pytest-cov >=2.12.0,<4.0.0" ,
51
51
" mypy ==0.910" ,
52
52
" flake8 >=3.8.3,<4.0.0" ,
53
- " black ==21.9b0 " ,
53
+ " black == 22.3.0 " ,
54
54
" isort >=5.0.6,<6.0.0" ,
55
55
" requests >=2.24.0,<3.0.0" ,
56
56
" httpx >=0.14.0,<0.19.0" ,
@@ -74,7 +74,9 @@ doc = [
74
74
" mkdocs-material >=8.1.4,<9.0.0" ,
75
75
" mdx-include >=1.4.1,<2.0.0" ,
76
76
" mkdocs-markdownextradata-plugin >=0.1.7,<0.3.0" ,
77
- " typer-cli >=0.0.12,<0.0.13" ,
77
+ # TODO: upgrade and enable typer-cli once it supports Click 8.x.x
78
+ # "typer-cli >=0.0.12,<0.0.13",
79
+ " typer >=0.4.1,<0.5.0" ,
78
80
" pyyaml >=5.3.1,<6.0.0"
79
81
]
80
82
dev = [
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ def test_post_file(tmp_path):
162
162
163
163
164
164
def test_post_large_file (tmp_path ):
165
- default_pydantic_max_size = 2 ** 16
165
+ default_pydantic_max_size = 2 ** 16
166
166
path = tmp_path / "test.txt"
167
167
path .write_bytes (b"x" * (default_pydantic_max_size + 1 ))
168
168
You can’t perform that action at this time.
0 commit comments