mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #113736 from graham33/fix/teslajsonpy_tests
teslajsonpy: fix tests
This commit is contained in:
commit
20f4107d0a
1 changed files with 5 additions and 8 deletions
|
@ -5,6 +5,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, wrapt
|
||||
}:
|
||||
|
@ -35,15 +36,11 @@ buildPythonPackage rec {
|
|||
wrapt
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
# Not all Home Assistant related check pass
|
||||
# https://github.com/zabuldon/teslajsonpy/issues/121
|
||||
# https://github.com/zabuldon/teslajsonpy/pull/124
|
||||
disabledTests = [
|
||||
"test_values_on_init"
|
||||
"test_get_value_on_init"
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "teslajsonpy" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue