mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
128 lines
4.6 KiB
Nix
128 lines
4.6 KiB
Nix
{ lib
|
|
, home-assistant
|
|
}:
|
|
|
|
let
|
|
# some components' tests have additional dependencies
|
|
extraCheckInputs = with home-assistant.python.pkgs; {
|
|
alexa = [ av ];
|
|
bluetooth = [ pyswitchbot ];
|
|
bthome = [ xiaomi-ble ];
|
|
camera = [ av ];
|
|
cloud = [ mutagen ];
|
|
config = [ pydispatcher ];
|
|
generic = [ av ];
|
|
google_translate = [ mutagen ];
|
|
google_sheets = [ oauth2client ];
|
|
hassio = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
|
|
homeassistant_sky_connect = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp zwave-js-server-python ];
|
|
homeassistant_yellow = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ];
|
|
lovelace = [ PyChromecast ];
|
|
nest = [ av ];
|
|
onboarding = [ pymetno radios rpi-bad-power ];
|
|
raspberry_pi = [ rpi-bad-power ];
|
|
shelly = [ pyswitchbot ];
|
|
tilt_ble = [ govee-ble ibeacon-ble ];
|
|
tomorrowio = [ pyclimacell ];
|
|
version = [ aioaseko ];
|
|
xiaomi_miio = [ arrow ];
|
|
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"
|
|
];
|
|
};
|
|
|
|
extraDisabledTests = {
|
|
roku = [
|
|
# homeassistant.components.roku.media_player:media_player.py:428 Media type music is not supported with format None (mime: audio/x-matroska)
|
|
"test_services_play_media_audio"
|
|
];
|
|
rfxtrx = [
|
|
# bytearrray mismatch
|
|
"test_rfy_cover"
|
|
];
|
|
zha = [
|
|
# 'manual_pick_radio_type' == 'choose_serial_port'
|
|
"test_options_flow_migration_reset_old_adapter"
|
|
];
|
|
};
|
|
|
|
extraPytestFlagsArray = {
|
|
asuswrt = [
|
|
# Sandbox network limitations, fails with unexpected error
|
|
"--deselect tests/components/asuswrt/test_config_flow.py::test_on_connect_failed"
|
|
];
|
|
dnsip = [
|
|
# AssertionError: assert <FlowResultType.FORM: 'form'> == <FlowResultTy...create_entry'>
|
|
"--deselect tests/components/dnsip/test_config_flow.py::test_options_flow"
|
|
];
|
|
history_stats = [
|
|
# Flaky: AssertionError: assert '0.0' == '12.0'
|
|
"--deselect tests/components/history_stats/test_sensor.py::test_end_time_with_microseconds_zeroed"
|
|
];
|
|
modem_callerid = [
|
|
# aioserial mock produces wrong state
|
|
"--deselect tests/components/modem_callerid/test_init.py::test_setup_entry"
|
|
];
|
|
unifiprotect = [
|
|
# "TypeError: object Mock can't be used in 'await' expression
|
|
"--deselect tests/components/unifiprotect/test_repairs.py::test_ea_warning_fix"
|
|
];
|
|
skybell = [
|
|
# Sandbox network limitations: Cannot connect to host cloud.myskybell.com:443
|
|
"--deselect tests/components/skybell/test_config_flow.py::test_flow_user_unknown_error"
|
|
];
|
|
stream = [
|
|
# Tries to write to /example and gets "Permission denied"
|
|
"--deselect tests/components/stream/test_recorder.py::test_record_lookback"
|
|
"--deselect tests/components/stream/test_recorder.py::test_recorder_log"
|
|
"--deselect tests/components/stream/test_worker.py::test_get_image"
|
|
];
|
|
zha = [
|
|
# AssertionError: assert 'manual_pick_radio_type' == 'choose_serial_port'
|
|
"--deselect tests/components/zha/test_config_flow.py::test_options_flow_restarts_running_zha_if_cancelled"
|
|
];
|
|
};
|
|
in lib.listToAttrs (map (component: lib.nameValuePair component (
|
|
home-assistant.overridePythonAttrs (old: {
|
|
pname = "homeassistant-test-${component}";
|
|
format = "other";
|
|
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
|
|
checkInputs = old.checkInputs
|
|
++ home-assistant.getPackages component home-assistant.python.pkgs
|
|
++ extraCheckInputs.${component} or [ ];
|
|
|
|
disabledTests = old.disabledTests ++ extraDisabledTests.${component} or [];
|
|
disabledTestPaths = old.disabledTestPaths ++ extraDisabledTestPaths.${component} or [ ];
|
|
|
|
# components are more often racy than the core
|
|
dontUsePytestXdist = true;
|
|
|
|
pytestFlagsArray = lib.remove "tests" old.pytestFlagsArray
|
|
++ [ "--numprocesses=4" ]
|
|
++ extraPytestFlagsArray.${component} or [ ]
|
|
++ [ "tests/components/${component}" ];
|
|
|
|
preCheck = old.preCheck + lib.optionalString (builtins.elem component [ "emulated_hue" "songpal" "system_log" ]) ''
|
|
patch -p1 < ${./patches/tests-mock-source-ip.patch}
|
|
'';
|
|
|
|
meta = old.meta // {
|
|
broken = lib.elem component [
|
|
];
|
|
# upstream only tests on Linux, so do we.
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|
|
)) home-assistant.supportedComponentsWithTests)
|