2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked }:
|
2017-05-12 07:36:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-xdist";
|
2018-10-06 11:56:20 +01:00
|
|
|
version = "1.23.2";
|
2017-05-12 07:36:25 +01:00
|
|
|
|
2017-05-15 13:36:30 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-06 11:56:20 +01:00
|
|
|
sha256 = "1ef0d05c905cfa0c5442c90e9e350e65c6ada120e33a00a066ca51c89f5f869a";
|
2017-05-12 07:36:25 +01:00
|
|
|
};
|
|
|
|
|
2018-02-10 10:37:12 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
|
|
buildInputs = [ pytest pytest-forked ];
|
2017-05-12 07:36:25 +01:00
|
|
|
propagatedBuildInputs = [ execnet ];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|