Merge pull request #3 from RationallyPrime/fix/apscheduler-tests

fix: disable apscheduler tests (processpool failures in nix sandbox)
This commit is contained in:
Rasyidan A F 2026-03-30 11:58:57 +07:00 committed by GitHub
commit 4f3060ea08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,10 @@ let
# cherrypy test_logging tests crash in macOS Nix sandbox (signal 0)
doCheck = false;
});
apscheduler = prev.apscheduler.overridePythonAttrs (_old: {
# apscheduler processpool tests fail in the nix sandbox (signal handling)
doCheck = false;
});
tenacity = prev.tenacity.overridePythonAttrs (_old: rec {
# hermes-agent >=0.4.0 requires tenacity >=9.1.4; nixpkgs has 9.1.2
version = "9.1.4";