Merge pull request #169414 from gador/sentry-sdk-dissable-failing-tests

python3Packages.sentry-sdk: disable tests
This commit is contained in:
Fabian Affolter 2022-04-23 12:25:04 +02:00 committed by GitHub
commit 9ae23ecbf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,6 +112,8 @@ buildPythonPackage rec {
"test_auto_session_tracking_with_aggregates" "test_auto_session_tracking_with_aggregates"
# Network requests to public web # Network requests to public web
"test_crumb_capture" "test_crumb_capture"
# TypeError: cannot unpack non-iterable TestResponse object
"test_rpc_error_page"
]; ];
disabledTestPaths = [ disabledTestPaths = [
@ -128,6 +130,16 @@ buildPythonPackage rec {
"tests/integrations/rq/" "tests/integrations/rq/"
# broken since pytest 7.0.1; AssertionError: previous item was not torn down properly # broken since pytest 7.0.1; AssertionError: previous item was not torn down properly
"tests/utils/test_contextvars.py" "tests/utils/test_contextvars.py"
# broken since Flask and Werkzeug update to 2.1.0 (different error messages)
"tests/integrations/flask/test_flask.py"
"tests/integrations/bottle/test_bottle.py"
"tests/integrations/django/test_basic.py"
"tests/integrations/pyramid/test_pyramid.py"
]
# test crashes on aarch64
++ lib.optionals (stdenv.buildPlatform != "x86_64-linux") [
"tests/test_transport.py"
"tests/integrations/threading/test_threading.py"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [