python3Packges.sqlalchemy: disable mem tests on darwin

These tests fail to pickle a file locally
This commit is contained in:
Jonathan Ringer 2019-11-11 13:08:58 -08:00 committed by Jon
parent 6687a4a727
commit a2e9b7bf12

View File

@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
, mock
, pysqlite
, fetchpatch
@ -25,7 +25,9 @@ buildPythonPackage rec {
dontUseSetuptoolsCheck = true;
disabledTests = lib.optionals isPy35 [ "exception_persistent_flush_py3k "];
# disable mem-usage tests on mac, has trouble serializing pickle files
disabledTests = lib.optionals isPy35 [ "exception_persistent_flush_py3k "]
++ lib.optionals stdenv.isDarwin [ "MemUsageWBackendTest" "MemUsageTest" ];
patches = [
# Two patches for sqlite 3.30 compatibility.