Update pkgs/development/python-modules/sentry-sdk/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Florian 2 years ago committed by GitHub
parent aa305e5093
commit 9277e0002a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/development/python-modules/sentry-sdk/default.nix

@ -137,10 +137,10 @@ buildPythonPackage rec {
"tests/integrations/pyramid/test_pyramid.py"
]
# test crashes on aarch64
++ (if stdenv.buildPlatform != "x86_64-linux" then [
++ lib.optionals (stdenv.buildPlatform != "x86_64-linux") [
"tests/test_transport.py"
"tests/integrations/threading/test_threading.py"
] else [ ]);
];
pythonImportsCheck = [
"sentry_sdk"

Loading…
Cancel
Save