python3Packages.json-logging: re-enable tests involving FastAPI

master
Robert Schütz 2021-05-10 16:35:25 +02:00
parent ba2e82325e
commit 3681cf7d12
1 changed files with 2 additions and 4 deletions

View File

@ -30,10 +30,8 @@ buildPythonPackage rec {
];
# - Quart is not packaged for Nixpkgs.
# - FastAPI is broken, see #112701 and tiangolo/fastapi#2335.
checkInputs = [ wheel flask /*quart*/ sanic /*fastapi*/ uvicorn requests pytestCheckHook ];
disabledTests = [ "quart" "fastapi" ];
disabledTestPaths = [ "tests/test_fastapi.py" ];
checkInputs = [ wheel flask /*quart*/ sanic fastapi uvicorn requests pytestCheckHook ];
disabledTests = [ "quart" ];
# Tests spawn servers and try to connect to them.
__darwinAllowLocalNetworking = true;