docs(nix): Comments explaining why the tests are disabled.
This commit is contained in:
parent
2eb373e8a7
commit
c0dcc385ac
1 changed files with 3 additions and 4 deletions
|
@ -10,11 +10,10 @@ in {
|
||||||
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [(pyfinal: pyprev: {
|
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [(pyfinal: pyprev: {
|
||||||
dnspython = (disablePyChecks pyprev.dnspython).overridePythonAttrs (old: {
|
dnspython = (disablePyChecks pyprev.dnspython).overridePythonAttrs (old: {
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# This test is unreliable when my internet is throttled by Indonesian ISP, timeout everywhere... lovely...
|
"test_resolver" # Relying too much on internet connection, Indonesian internet couldn't cope with it
|
||||||
"test_resolver"
|
|
||||||
] ++ old.disabledTests;
|
] ++ old.disabledTests;
|
||||||
});
|
});
|
||||||
pillow = disablePyChecks pyprev.pillow;
|
pillow = disablePyChecks pyprev.pillow; # Inconsistent test result
|
||||||
cherrypy = disablePyChecks pyprev.cherrypy;
|
cherrypy = disablePyChecks pyprev.cherrypy; # Inconsistent test result
|
||||||
})];
|
})];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue