2019-08-18 00:19:08 -07:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest
|
|
|
|
, setuptools_scm, pytest-forked, filelock, six, isPy3k }:
|
2017-05-11 23:36:25 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-xdist";
|
2019-10-23 23:47:45 -07:00
|
|
|
version = "1.30.0";
|
2017-05-11 23:36:25 -07:00
|
|
|
|
2017-05-15 05:36:30 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-23 23:47:45 -07:00
|
|
|
sha256 = "5d1b1d4461518a6023d56dab62fb63670d6f7537f23e2708459a557329accf48";
|
2017-05-11 23:36:25 -07:00
|
|
|
};
|
|
|
|
|
2018-12-27 06:24:41 -08:00
|
|
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
|
|
|
checkInputs = [ pytest filelock ];
|
|
|
|
propagatedBuildInputs = [ execnet pytest-forked six ];
|
2017-05-11 23:36:25 -07:00
|
|
|
|
2019-08-18 00:19:08 -07:00
|
|
|
# Encountered a memory leak
|
|
|
|
# https://github.com/pytest-dev/pytest-xdist/issues/462
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
|
2017-05-11 23:36:25 -07:00
|
|
|
checkPhase = ''
|
2018-02-10 02:37:12 -08:00
|
|
|
# Excluded tests access file system
|
|
|
|
py.test testing -k "not test_distribution_rsyncdirs_example \
|
|
|
|
and not test_rsync_popen_with_path \
|
|
|
|
and not test_popen_rsync_subdir \
|
|
|
|
and not test_init_rsync_roots \
|
|
|
|
and not test_rsyncignore"
|
2017-05-11 23:36:25 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-xdist";
|
2017-05-11 23:36:25 -07:00
|
|
|
license = licenses.mit;
|
2018-11-04 07:48:43 -08:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-05-11 23:36:25 -07:00
|
|
|
};
|
|
|
|
}
|