2018-12-27 14:24:41 +00:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock, six }:
|
2017-05-12 07:36:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-xdist";
|
2019-02-14 07:37:28 +00:00
|
|
|
version = "1.26.1";
|
2017-05-12 07:36:25 +01:00
|
|
|
|
2017-05-15 13:36:30 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:28 +00:00
|
|
|
sha256 = "d03d1ff1b008458ed04fa73e642d840ac69b4107c168e06b71037c62d7813dd4";
|
2017-05-12 07:36:25 +01:00
|
|
|
};
|
|
|
|
|
2018-12-27 14:24:41 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
|
|
|
checkInputs = [ pytest filelock ];
|
|
|
|
propagatedBuildInputs = [ execnet pytest-forked six ];
|
2017-05-12 07:36:25 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2018-02-10 10:37:12 +00: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-12 07:36:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
|
|
|
|
homepage = https://github.com/pytest-dev/pytest-xdist;
|
|
|
|
license = licenses.mit;
|
2018-11-04 15:48:43 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-05-12 07:36:25 +01:00
|
|
|
};
|
|
|
|
}
|