home-assistant.python.pkgs.arcam-fmj: fix tests

Disable the ones that are incompatible with home-assistant's version of
pytest-aiohttp.

authored by Robert Schütz and committed by Robert Schütz 7c424020 3441f255

+10
+10
pkgs/servers/home-assistant/default.nix
··· 41 41 }; 42 42 }); 43 43 44 + arcam-fmj = super.arcam-fmj.overridePythonAttrs (old: rec { 45 + disabledTestPaths = [ 46 + # incompatible with pytest-aiohttp 0.3.0 47 + # see https://github.com/elupus/arcam_fmj/pull/12 48 + "tests/test_fake.py" 49 + "tests/test_standard.py" 50 + "tests/test_utils.py" 51 + ]; 52 + }); 53 + 44 54 backoff = super.backoff.overridePythonAttrs (oldAttrs: rec { 45 55 version = "1.11.1"; 46 56 src = fetchFromGitHub {