mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
70 lines
2.0 KiB
Nix
70 lines
2.0 KiB
Nix
|
{ lib
|
||
|
, home-assistant
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
# some components' tests have additional dependencies
|
||
|
extraCheckInputs = with home-assistant.python.pkgs; {
|
||
|
alexa = [ ha-av ];
|
||
|
camera = [ ha-av ];
|
||
|
cloud = [ mutagen ];
|
||
|
config = [ pydispatcher ];
|
||
|
generic = [ ha-av ];
|
||
|
google_translate = [ mutagen ];
|
||
|
nest = [ ha-av ];
|
||
|
onboarding = [ pymetno rpi-bad-power ];
|
||
|
voicerss = [ mutagen ];
|
||
|
yandextts = [ mutagen ];
|
||
|
zha = [ pydeconz ];
|
||
|
zwave_js = [ homeassistant-pyozw ];
|
||
|
};
|
||
|
|
||
|
extraDisabledTestPaths = {
|
||
|
tado = [
|
||
|
# tado/test_{climate,water_heater}.py: Tries to connect to my.tado.com
|
||
|
"tests/components/tado/test_climate.py"
|
||
|
"tests/components/tado/test_water_heater.py"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
extraPytestFlagsArray = {
|
||
|
asuswrt = [
|
||
|
# asuswrt/test_config_flow.py: Sandbox network limitations, fails with unexpected error
|
||
|
"--deselect tests/components/asuswrt/test_config_flow.py::test_on_connect_failed"
|
||
|
];
|
||
|
};
|
||
|
in lib.listToAttrs (map (component: lib.nameValuePair component (
|
||
|
home-assistant.overridePythonAttrs (old: {
|
||
|
pname = "homeassistant-test-${component}";
|
||
|
|
||
|
dontBuild = true;
|
||
|
dontInstall = true;
|
||
|
|
||
|
checkInputs = old.checkInputs
|
||
|
++ home-assistant.getPackages component home-assistant.python.pkgs
|
||
|
++ extraCheckInputs.${component} or [ ];
|
||
|
|
||
|
disabledTestPaths = old.disabledTestPaths ++ extraDisabledTestPaths.${component} or [ ];
|
||
|
|
||
|
pytestFlagsArray = lib.remove "tests" old.pytestFlagsArray
|
||
|
++ extraPytestFlagsArray.${component} or [ ]
|
||
|
++ [ "tests/components/${component}" ];
|
||
|
|
||
|
preCheck = old.preCheck + lib.optionalString (component != "network") ''
|
||
|
patch -p1 < ${./patches/tests-mock-source-ip.patch}
|
||
|
'';
|
||
|
|
||
|
meta = old.meta // {
|
||
|
broken = lib.elem component [
|
||
|
"airtouch4"
|
||
|
"glances"
|
||
|
"ridwell"
|
||
|
"venstar"
|
||
|
"yamaha_musiccast"
|
||
|
];
|
||
|
# upstream only tests on Linux, so do we.
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
})
|
||
|
)) home-assistant.supportedComponentsWithTests)
|