python3Packages.python-crontab: skip test test_03_usage

to my knowledge this test only fails on darwin, but assuming /tmp
is writable is a Bad Thing anyway so skipping on all platforms.
don't think it covers anything not otherwise covered.
This commit is contained in:
Robert Scott 2021-11-20 20:27:30 +00:00 committed by tomberek
parent 6aded65e28
commit 42133e8451

@ -10,7 +10,11 @@ buildPythonPackage rec {
};
checkInputs = [ pytestCheckHook ];
disabledTests = [ "test_07_non_posix_shell"];
disabledTests = [
"test_07_non_posix_shell"
# doctest that assumes /tmp is writeable, awkward to patch
"test_03_usage"
];
propagatedBuildInputs = [ python-dateutil ];