summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-05-22 20:58:11 +0000
committerRobert Schütz <nix@dotlambda.de>2022-05-22 20:58:11 +0000
commit1b815c86c1fd62732c342d5901c9a7b2c0c99579 (patch)
treea7e5db6df211870dc2684cde44e4b4c16f627183 /pkgs
parentb048539afb23542dd33768604c5935a60a7926ba (diff)
home-assistant: don't run pylint tests
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/home-assistant/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index ff5c69b04fb8..b23b9bc32520 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -282,9 +282,6 @@ in python.pkgs.buildPythonApplication rec {
respx
stdlib-list
tqdm
- # required by tests/pylint
- astroid
- pylint
# required by tests/auth/mfa_modules
pyotp
] ++ lib.concatMap (component: getPackages component python.pkgs) [
@@ -308,6 +305,8 @@ in python.pkgs.buildPythonApplication rec {
];
disabledTestPaths = [
+ # we don't care about code quality
+ "tests/pylint"
# don't bulk test all components
"tests/components"
# pyotp since v2.4.0 complains about the short mock keys, hass pins v2.3.0