python310Packages.repeated-test: add pythonImportsCheck

This commit is contained in:
Fabian Affolter 2022-11-19 11:25:05 +01:00 committed by GitHub
parent 19ec9f1d5f
commit 056796ea9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,9 +32,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"repeated_test"
];
meta = with lib; {
description = "A quick unittest-compatible framework for repeating a test function over many fixtures";
description = "Unittest-compatible framework for repeating a test function over many fixtures";
homepage = "https://github.com/epsy/repeated_test";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}