about summary refs log tree commit diff
path: root/pkgs/development/python-modules/json-logging
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-05-10 16:35:25 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-05-11 18:25:23 +0200
commit3681cf7d1282baef884436ac9c2c5cea822092c4 (patch)
tree62857258bb091dc5430c4e6ed7fec8fbab6c2b07 /pkgs/development/python-modules/json-logging
parentba2e82325ec829e37d2d86cd89a1ff12a8ad7f28 (diff)
python3Packages.json-logging: re-enable tests involving FastAPI
Diffstat (limited to 'pkgs/development/python-modules/json-logging')
-rw-r--r--pkgs/development/python-modules/json-logging/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/json-logging/default.nix b/pkgs/development/python-modules/json-logging/default.nix
index 3d34cb2475abe..1f4425a3e112a 100644
--- a/pkgs/development/python-modules/json-logging/default.nix
+++ b/pkgs/development/python-modules/json-logging/default.nix
@@ -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;