python3Packges.sqlalchemy: disable mem tests on darwin
These tests fail to pickle a file locally
This commit is contained in:
parent
6687a4a727
commit
a2e9b7bf12
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
|
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
|
||||||
, mock
|
, mock
|
||||||
, pysqlite
|
, pysqlite
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
@ -25,7 +25,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
dontUseSetuptoolsCheck = true;
|
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 = [
|
patches = [
|
||||||
# Two patches for sqlite 3.30 compatibility.
|
# Two patches for sqlite 3.30 compatibility.
|
||||||
|
Loading…
Reference in New Issue
Block a user