diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 15:12:37 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 16:18:50 +0100 |
commit | d4f3820ddb6c035832a234fde977be3ea31c11c7 (patch) | |
tree | aadb090ae22e33e98efc3338a13fb207a354d1d6 | |
parent | e319764cba5a99eeaed478702f1a1c200506abe9 (diff) |
gnu: python-moto: Update to 5.1.5.
* gnu/packages/python-xyz.scm (python-moto): Update to 5.1.5.
[arguments] <test-args>: Run tests in parallel. Skip 10 more tests.
[propagated-inputs]: Add python-pyparsing.
[native-inputs]: Add python-pytest-xdist.
Change-Id: I5054e141f870640f898a0722389e95f42d5a951d
-rw-r--r-- | gnu/packages/python-xyz.scm | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a8166e6213..c89aee7ff2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20616,17 +20616,19 @@ text.") (define-public python-moto (package (name "python-moto") - (version "5.0.25") + (version "5.1.5") (source (origin (method url-fetch) (uri (pypi-uri "moto" version)) (sha256 - (base32 "1cp61k745dxyzck543lamh8mnwwxazsgzqascg4nanpcihaqpsny")))) + (base32 "0kpqdn96gw9h2bq05bp943q85f4lq89c4nk1gf71w60nkbm65cs2")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 10000 passed, 16 skipped, 2 xfailed, 42 warnings #:test-flags '(list "-m" "not network and not requires_docker" + "--numprocesses" (number->string (min 8 (parallel-job-count))) ;; This needs pycognito. "--ignore-glob=tests/test_cognitoidp/*" ;; This needs Internet access. @@ -20658,7 +20660,28 @@ text.") " and not test_with_custom_request_header" " and not test_dependencies" " and not test_cancel_running_job" - " and not test_container_overrides")) + " and not test_container_overrides" + + ;; TypeError: Got unexpected keyword argument + ;; 'account_id_endpoint_mode' + " and not test_dynamodb_with_account_id_routing" + + ;; botocore.exceptions.ParamValidationError: Parameter + ;; validation failed + " and not test_create_firewall" + " and not test_describe_logging_configuration" + " and not test_update_logging_configuration" + " and not test_list_firewalls" + ;; AttributeError: 'TimestreamInfluxDB' object has no attribute + ;; 'list_db_clusters' + + " and not test_create_db_cluster" + " and not test_get_db_cluster" + " and not test_list_db_clusters" + + ;; XXX: misc + " and not test_list_objects_v2_checksum_algo" + " and not test_upload_file_with_checksum_algorithm")) #:phases '(modify-phases %standard-phases (add-after 'unpack 'compatibility @@ -20680,6 +20703,7 @@ text.") python-flask-cors python-freezegun python-pytest + python-pytest-xdist python-setuptools python-wheel)) (inputs @@ -20699,6 +20723,7 @@ text.") python-multipart python-openapi-spec-validator python-py-partiql-parser + python-pyparsing python-requests python-responses python-werkzeug |