2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, execnet, pytest_6
|
2020-08-16 20:53:35 +01:00
|
|
|
, setuptools_scm, pytest-forked, filelock, psutil, six, isPy3k }:
|
2017-05-12 07:36:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-xdist";
|
2020-11-29 14:04:40 +00:00
|
|
|
version = "2.1.0";
|
2020-12-04 12:46:55 +00:00
|
|
|
disabled = !isPy3k;
|
2017-05-12 07:36:25 +01:00
|
|
|
|
2017-05-15 13:36:30 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-04 12:46:55 +00:00
|
|
|
sha256 = "0wh6pn66nncfs6ay0n863bgyriwsgppn8flx5l7551j1lbqkinc2";
|
2017-05-12 07:36:25 +01:00
|
|
|
};
|
|
|
|
|
2020-12-04 12:46:55 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm pytest_6 ];
|
|
|
|
checkInputs = [ pytest_6 filelock ];
|
2020-08-16 20:53:35 +01:00
|
|
|
propagatedBuildInputs = [ execnet pytest-forked psutil six ];
|
2017-05-12 07:36:25 +01:00
|
|
|
|
2020-12-04 12:46:55 +00:00
|
|
|
# pytest6 doesn't allow for new lines
|
|
|
|
# capture_deprecated not compatible with latest pytest6
|
2017-05-12 07:36:25 +01:00
|
|
|
checkPhase = ''
|
2018-02-10 10:37:12 +00:00
|
|
|
# Excluded tests access file system
|
2020-12-04 12:46:55 +00:00
|
|
|
export HOME=$TMPDIR
|
|
|
|
pytest -n $NIX_BUILD_CORES \
|
|
|
|
-k "not (distribution_rsyncdirs_example or rsync or warning_captured_deprecated_in_pytest_6)"
|
2017-05-12 07:36:25 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-12 07:36:25 +01:00
|
|
|
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-xdist";
|
2017-05-12 07:36:25 +01:00
|
|
|
license = licenses.mit;
|
2018-11-04 15:48:43 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2017-05-12 07:36:25 +01:00
|
|
|
};
|
|
|
|
}
|