-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythonPackages.pytest_xdist: fix build
- Loading branch information
1 parent
4b8f5ca
commit 46714a3
Showing
4 changed files
with
50 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest | ||
, setuptools_scm, pytest-forked, filelock, psutil, six, isPy3k }: | ||
|
||
buildPythonPackage rec { | ||
pname = "pytest-xdist"; | ||
version = "1.34.0"; | ||
|
||
src = fetchPypi { | ||
inherit pname version; | ||
sha256 = "1vh4ps32lp5ignch5adbl3pgchvigdfmrl6qpmhxih54wa1qw3il"; | ||
}; | ||
|
||
nativeBuildInputs = [ setuptools_scm pytest ]; | ||
checkInputs = [ pytest filelock ]; | ||
propagatedBuildInputs = [ execnet pytest-forked psutil 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 ]; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters