mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-aws-xray-sdk: Fix build.
* gnu/packages/python-web.scm (python-aws-xray-sdk): [arguments] <test-flags>: Rework skipped tests. [native-inputs]: Remove python-pytest-aiohttp, python-requests, python-wheel, and python-pytest-asyncio; add python-aiohttp, python-pytest-asyncio-0.26. [propagated-inputs]: Remove python-aiohttp, python-future, and python-urllib3; add python-requests. Change-Id: Ib0a7166cc507d6ebac424780b2760e17c7dca954
This commit is contained in:
parent
47c707f479
commit
2d4f7ba84e
1 changed files with 10 additions and 15 deletions
|
@ -1964,7 +1964,10 @@ Model} (SAM) templates into AWS CloudFormation templates.")
|
||||||
(list
|
(list
|
||||||
#:test-flags
|
#:test-flags
|
||||||
'(list ;; Tries to connect to external network resources
|
'(list ;; Tries to connect to external network resources
|
||||||
|
"--ignore=tests/ext/aiohttp/test_client.py"
|
||||||
|
"--ignore=tests/ext/httplib/test_httplib.py"
|
||||||
"--ignore=tests/ext/httpx"
|
"--ignore=tests/ext/httpx"
|
||||||
|
"--ignore=tests/ext/requests/test_requests.py"
|
||||||
;; TODO: How to configure Django for these tests?
|
;; TODO: How to configure Django for these tests?
|
||||||
"--ignore=tests/ext/django"
|
"--ignore=tests/ext/django"
|
||||||
;; These tests require packages not yet in Guix.
|
;; These tests require packages not yet in Guix.
|
||||||
|
@ -1982,11 +1985,7 @@ Model} (SAM) templates into AWS CloudFormation templates.")
|
||||||
"--ignore=tests/ext/flask_sqlalchemy/test_query.py"
|
"--ignore=tests/ext/flask_sqlalchemy/test_query.py"
|
||||||
;; FIXME: Why is this failing?
|
;; FIXME: Why is this failing?
|
||||||
"--ignore=tests/test_patcher.py"
|
"--ignore=tests/test_patcher.py"
|
||||||
"--ignore=tests/test_lambda_context.py"
|
"--ignore=tests/test_lambda_context.py")
|
||||||
;; These tests want to access httpbin.org.
|
|
||||||
"--ignore=tests/ext/requests/test_requests.py"
|
|
||||||
"--ignore=tests/ext/httplib/test_httplib.py"
|
|
||||||
"--ignore=tests/ext/aiohttp/test_client.py")
|
|
||||||
#:phases
|
#:phases
|
||||||
'(modify-phases %standard-phases
|
'(modify-phases %standard-phases
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
|
@ -1995,6 +1994,7 @@ Model} (SAM) templates into AWS CloudFormation templates.")
|
||||||
(setenv "PYTHONPATH" (getcwd)))))))
|
(setenv "PYTHONPATH" (getcwd)))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ;; These are required for the test suite.
|
(list ;; These are required for the test suite.
|
||||||
|
python-aiohttp
|
||||||
python-bottle
|
python-bottle
|
||||||
python-flask
|
python-flask
|
||||||
python-flask-sqlalchemy
|
python-flask-sqlalchemy
|
||||||
|
@ -2002,20 +2002,15 @@ Model} (SAM) templates into AWS CloudFormation templates.")
|
||||||
python-mock
|
python-mock
|
||||||
python-pymysql
|
python-pymysql
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-aiohttp
|
python-pytest-asyncio-0.26
|
||||||
python-pytest-asyncio
|
|
||||||
python-pytest-benchmark
|
python-pytest-benchmark
|
||||||
python-requests
|
|
||||||
python-sqlalchemy
|
|
||||||
python-webtest
|
|
||||||
python-setuptools
|
python-setuptools
|
||||||
python-wheel))
|
python-sqlalchemy
|
||||||
|
python-webtest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-aiohttp
|
(list python-botocore
|
||||||
python-botocore
|
|
||||||
python-future
|
|
||||||
python-jsonpickle
|
python-jsonpickle
|
||||||
python-urllib3
|
python-requests
|
||||||
python-wrapt))
|
python-wrapt))
|
||||||
(synopsis "Profile applications on AWS X-Ray")
|
(synopsis "Profile applications on AWS X-Ray")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue