2018-12-27 15:24:41 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock, six }:
|
2017-05-12 08:36:25 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-xdist";
|
2018-11-11 14:47:27 +01:00
|
|
|
version = "1.24.1";
|
2017-05-12 08:36:25 +02:00
|
|
|
|
2017-05-15 14:36:30 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-11 14:47:27 +01:00
|
|
|
sha256 = "909bb938bdb21e68a28a8d58c16a112b30da088407b678633efb01067e3923de";
|
2017-05-12 08:36:25 +02:00
|
|
|
};
|
|
|
|
|
2018-12-27 15:24:41 +01:00
|
|
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
|
|
|
checkInputs = [ pytest filelock ];
|
|
|
|
propagatedBuildInputs = [ execnet pytest-forked six ];
|
2017-05-12 08:36:25 +02:00
|
|
|
|
|
|
|
checkPhase = ''
|
2018-02-10 11:37:12 +01: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 08:36:25 +02: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 16:48:43 +01:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-05-12 08:36:25 +02:00
|
|
|
};
|
|
|
|
}
|