File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ devtools==0.12.2
2727distlib == 0.3.8
2828distro == 1.9.0
2929dnspython == 2.6.1
30- eip712-structs == 1.1.0
3130email_validator == 2.2.0
3231eth-account == 0.13.1
3332eth-hash == 0.7.0
@@ -61,7 +60,7 @@ importlib_metadata==8.0.0
6160importlib_resources == 6.4.0
6261iniconfig == 2.0.0
6362Jinja2 == 3.1.4
64- jq == 1.7.0
63+ jq == 1.7.0 ; platform_system != "Windows"
6564jsonpatch == 1.33
6665jsonpointer == 3.0.0
6766jsonschema == 4.23.0
@@ -158,7 +157,7 @@ typing_extensions==4.12.2
158157ujson == 5.10.0
159158urllib3 == 2.2.2
160159uvicorn == 0.30.3
161- uvloop == 0.19.0
160+ uvloop == 0.19.0 ; platform_system != "Windows"
162161virtualenv == 20.26.3
163162watchfiles == 0.22.0
164163web3 == 6.11.0
Original file line number Diff line number Diff line change 1+ import importlib
2+
3+
4+ def test_webhook_server_fastapi_importable () -> None :
5+ """Regression test: requirements must include FastAPI for app import."""
6+ module = importlib .import_module ("webhook_server_fastapi" )
7+ assert hasattr (module , "app" )
You can’t perform that action at this time.
0 commit comments