From e2664eb7011c12ef42554ae7680512d046e44a66 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Thu, 3 Mar 2022 12:44:10 -0700 Subject: [PATCH] task.tests Run unit tests In addition to the six tests we were running, let's add the ~six hundred unit tests we've added over the years. Signed-off-by: Zack Cerza --- teuthology/task/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/tests/__init__.py b/teuthology/task/tests/__init__.py index 088e84483..c066f6660 100644 --- a/teuthology/task/tests/__init__.py +++ b/teuthology/task/tests/__init__.py @@ -89,7 +89,7 @@ def task(ctx, config): status = pytest.main( args=[ '-q', - '--pyargs', __name__ + '--pyargs', __name__, 'teuthology.test' ], plugins=[TeuthologyContextPlugin(ctx, config)] ) -- 2.47.3