diff --git a/.config/nix/overlays/python.nix b/.config/nix/overlays/python.nix index d52390a..a8b6ea9 100644 --- a/.config/nix/overlays/python.nix +++ b/.config/nix/overlays/python.nix @@ -10,11 +10,10 @@ in { pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [(pyfinal: pyprev: { dnspython = (disablePyChecks pyprev.dnspython).overridePythonAttrs (old: { disabledTests = [ - # This test is unreliable when my internet is throttled by Indonesian ISP, timeout everywhere... lovely... - "test_resolver" + "test_resolver" # Relying too much on internet connection, Indonesian internet couldn't cope with it ] ++ old.disabledTests; }); - pillow = disablePyChecks pyprev.pillow; - cherrypy = disablePyChecks pyprev.cherrypy; + pillow = disablePyChecks pyprev.pillow; # Inconsistent test result + cherrypy = disablePyChecks pyprev.cherrypy; # Inconsistent test result })]; }