docs(nix): Comments explaining why the tests are disabled.

This commit is contained in:
Ahmad Ansori Palembani 2024-10-20 20:45:54 +07:00
parent 2eb373e8a7
commit c0dcc385ac
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -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
})];
}