mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest
|
|
, setuptools_scm, pytest-forked, filelock, six, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-xdist";
|
|
version = "1.30.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5d1b1d4461518a6023d56dab62fb63670d6f7537f23e2708459a557329accf48";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
|
checkInputs = [ pytest filelock ];
|
|
propagatedBuildInputs = [ execnet pytest-forked six ];
|
|
|
|
# Encountered a memory leak
|
|
# https://github.com/pytest-dev/pytest-xdist/issues/462
|
|
doCheck = !isPy3k;
|
|
|
|
checkPhase = ''
|
|
# 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"
|
|
'';
|
|
|
|
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;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|