lol

python39Packages.ibm-cloud-sdk-core: disable failing tests, remove linting and not required checkInputs

authored by

Sandro Jäckel and committed by
Martin Weinelt
d779e6d2 acf4f5f2

+13 -13
+13 -13
pkgs/development/python-modules/ibm-cloud-sdk-core/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , codecov 5 4 , pyjwt 6 - , pylint 7 5 , pytestCheckHook 8 - , pytest-cov 9 6 , python-dateutil 10 7 , requests 11 8 , responses ··· 21 18 sha256 = "c855d0111dd570f36497cdb8c11510ae8d14fb70698f20529e19f88485266233"; 22 19 }; 23 20 24 - checkInputs = [ 25 - codecov 26 - pylint 27 - pytestCheckHook 28 - pytest-cov 29 - responses 30 - tox 31 - ]; 32 - 33 21 propagatedBuildInputs = [ 34 22 pyjwt 35 23 python-dateutil 36 24 requests 37 25 ]; 38 26 39 - # Various tests try to access credential files which are not included with the source distribution 27 + checkInputs = [ 28 + pytestCheckHook 29 + responses 30 + tox 31 + ]; 32 + 40 33 disabledTests = [ 34 + # Various tests try to access credential files which are not included with the source distribution 41 35 "test_configure_service" 42 36 "test_cp4d_authenticator" 43 37 "test_cwd" ··· 49 43 "test_iam" 50 44 "test_read_external_sources_2" 51 45 "test_retry_config_external" 46 + # assertion error due to requests brotli support 47 + "test_http_client" 48 + ]; 49 + 50 + disabledTestPaths = [ 51 + "test/test_container_token_manager.py" 52 52 ]; 53 53 54 54 meta = with lib; {