Unverified Commit 4933e72b authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

treewide: bump openstack clis to python 3.13 (#419263)

parents 4d4fa98c d5deebda
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ python3Packages.buildPythonApplication rec {
  # Tests output a few exceptions but still succeed
  checkPhase = ''
    runHook preCheck
    stestr run
    stestr run -e <(echo "test_load_ok")
    runHook postCheck
  '';

+0 −3
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
  dulwich,
  pbr,
  sphinx,
  pythonAtLeast,
  setuptools,
}:

@@ -14,8 +13,6 @@ buildPythonPackage rec {
  version = "3.5.0";
  pyproject = true;

  disabled = pythonAtLeast "3.13";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-3h1dXtIMk1/CgbUP30ppUo+Q8qdb7PQtGIRD9eGWwJ8=";
+3 −2
Original line number Diff line number Diff line
@@ -69,8 +69,9 @@ buildPythonPackage rec {
  disabledTests = [
    # not compatible with sandbox
    "test_logging_handle_error"
    # File which is used doesn't seem not to be present
    "test_log_config_append_invalid"
    # Incompatible Exception Representation, displaying natively
    "test_rate_limit"
    "test_rate_limit_except_level"
  ];

  pythonImportsCheck = [ "oslo_log" ];
+1 −0
Original line number Diff line number Diff line
@@ -76,6 +76,7 @@ buildPythonPackage rec {
      cinderclient.tests.unit.test_client.ClientTest.test_sessionclient_request_method_raises_badrequest
      cinderclient.tests.unit.test_client.ClientTest.test_sessionclient_request_method_raises_overlimit
      cinderclient.tests.unit.test_shell.ShellTest.test_password_prompted
      cinderclient.tests.unit.test_shell.TestLoadVersionedActions.test_load_versioned_actions_with_help
    ")

    runHook postCheck
+4 −1
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@ let
  pname = "python-glanceclient";
  version = "4.8.0";

  # Skip tests which require networking.
  disabledTests = [
    # Skip tests which require networking.
    "test_http_chunked_response"
    "test_v1_download_has_no_stray_output_to_stdout"
    "test_v2_requests_valid_cert_verification"
@@ -40,6 +40,9 @@ let
    "test_v2_requests_valid_cert_no_key"
    "test_v2_requests_valid_cert_verification_no_compression"
    "test_log_request_id_once"
    # asserts exact amount of mock calls
    "test_cache_schemas_gets_when_forced"
    "test_cache_schemas_gets_when_not_exists"
  ];
in
buildPythonPackage {
Loading