home-assistant: disable aws-sam-translator tests

This commit is contained in:
Sandro - 2023-04-08 21:08:25 +02:00
parent a222a29f40
commit cc85d8f5a1
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 7 additions and 4 deletions

View File

@ -94,12 +94,15 @@
"wled"
];
package = (pkgs.home-assistant.override {
packageOverrides = final: prev: {
moto = prev.moto.overrideAttrs (_: {
# takes a long time and can't be sped up with pytest-xdist
# those tests take a long(er) time and can't be sped up with pytest-xdist
packageOverrides = final: prev: let
noTests = {
doCheck = false;
doInstallCheck = false;
});
};
in {
aws-sam-translator = prev.aws-sam-translator.overrideAttrs (_: noTests);
moto = prev.moto.overrideAttrs (_: noTests);
};
}).overrideAttrs (_: {
doCheck = false;