Commit 73c085e4 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.pytest-integration: init at 0.2.3

parent d80d88ce
Loading
Loading
Loading
Loading
+51 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "pytest-integration";
  version = "0.2.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jbwdevries";
    repo = "pytest-integration";
    tag = "v${version}";
    hash = "sha256-Ziy+GEfljYDccx3mm63p7rhDUQVDXLbk7DxUW3npjiE=";
  };

  build-system = [
    setuptools
  ];

  pythonImportsCheck = [ "pytest_integration" ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  # Tests need to discover the mock `package` module located under `example/`
  preCheck = ''
    pushd example
  '';

  postCheck = ''
    popd
  '';

  meta = {
    description = "Organizing test by unit test, quick integration or slow integration";
    homepage = "https://github.com/jbwdevries/pytest-integration";
    changelog = "https://github.com/jbwdevries/pytest-integration/blob/${src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -14737,6 +14737,8 @@ self: super: with self; {
  pytest-instafail = callPackage ../development/python-modules/pytest-instafail { };
  pytest-integration = callPackage ../development/python-modules/pytest-integration { };
  pytest-isort = callPackage ../development/python-modules/pytest-isort { };
  pytest-json-report = callPackage ../development/python-modules/pytest-json-report { };