pythonPackages.pytest-testmon: init at 0.9.16

Co-Authored-By: worldofpeace <worldofpeace@protonmail.ch>
This commit is contained in:
Daniel Vianna 2019-06-12 10:18:47 +10:00 committed by worldofpeace
parent fa6c8ada20
commit 73d0b53ff2
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, coverage
, pytest
}:
buildPythonPackage rec {
pname = "pytest-testmon";
version = "0.9.16";
src = fetchPypi {
inherit pname version;
sha256 = "df00594e55f8f8f826e0e345dc23863ebac066eb749f8229c515a0373669c5bb";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ coverage ];
checkInputs = [ pytest ];
checkPhase = ''
pytest test
'';
meta = with lib; {
homepage = "https://github.com/tarpas/pytest-testmon/";
description = "This is a py.test plug-in which automatically selects and re-executes only tests affected by recent changes";
license = licenses.mit;
maintainers = [ maintainers.dmvianna ];
};
}

View File

@ -821,6 +821,8 @@ in {
pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };
pytest-testmon = callPackage ../development/python-modules/pytest-testmon { };
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
python-binance = callPackage ../development/python-modules/python-binance { };