Merge pull request #188397 from SuperSandro2000/python-passthru-tests

This commit is contained in:
Martin Weinelt 2022-08-26 16:17:47 +02:00 committed by GitHub
commit a593beeaa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -10,6 +10,7 @@
, black
, magic-wormhole
, mitmproxy
, typer
}:
buildPythonPackage rec {
@ -31,7 +32,7 @@ buildPythonPackage rec {
];
passthru.tests = {
inherit black flask magic-wormhole mitmproxy;
inherit black flask magic-wormhole mitmproxy typer;
};
meta = with lib; {

View File

@ -9,6 +9,8 @@
, pytest-timeout
, pytest-xprocess
, pytestCheckHook
# for passthru.tests
, moto, sentry-sdk
}:
buildPythonPackage rec {
@ -53,6 +55,10 @@ buildPythonPackage rec {
"-m 'not filterwarnings'"
];
passthru.tests = {
inherit moto sentry-sdk;
};
meta = with lib; {
homepage = "https://palletsprojects.com/p/werkzeug/";
description = "The comprehensive WSGI web application library";