Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2019-10-18 12:27:41 +02:00
102 changed files with 7075 additions and 1248 deletions

View File

@@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, isPy3k
{ lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
, mock
, pysqlite
, pytest
@@ -22,7 +22,9 @@ buildPythonPackage rec {
sed -e 's:--max-worker-restart=5::g' -i setup.cfg
'';
checkPhase = ''
checkPhase = if isPy35 then ''
pytest test -k 'not exception_persistent_flush_py3k'
'' else ''
pytest test
'';