python311Packages.pytest-raises: disable failing tests

This commit is contained in:
Fabian Affolter 2023-08-15 15:49:41 +02:00
parent f1d831ab8c
commit 739ef72bff

View file

@ -1,25 +1,44 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytest
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-raises"; pname = "pytest-raises";
version = "0.11"; version = "0.11";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Lemmons"; owner = "Lemmons";
repo = pname; repo = pname;
rev = version; rev = "refs/tags/${version}";
sha256 = "0gbb4kml2qv7flp66i73mgb4qihdaybb6c96b5dw3mhydhymcsy2"; hash = "sha256-wmtWPWwe1sFbWSYxs5ZXDUZM1qvjRGMudWdjQeskaz0=";
}; };
buildInputs = [
pytest
];
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "pytest_raises" ]; pythonImportsCheck = [
"pytest_raises"
];
disabledTests = [
# Failed: nomatch: '*::test_pytest_mark_raises_unexpected_exception FAILED*'
# https://github.com/Lemmons/pytest-raises/issues/30
"test_pytest_mark_raises_unexpected_exception"
"test_pytest_mark_raises_unexpected_match"
"test_pytest_mark_raises_parametrize"
];
meta = with lib; { meta = with lib; {
description = "An implementation of pytest.raises as a pytest.mark fixture"; description = "An implementation of pytest.raises as a pytest.mark fixture";