From 9d53a0157529385cbb3862178c7ed69ecb843932 Mon Sep 17 00:00:00 2001 From: Robert Kaye Date: Tue, 30 Jan 2024 17:19:23 +0100 Subject: [PATCH] Fix invocation again --- troi/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/troi/cli.py b/troi/cli.py index 2b2b7b2..66a3a4d 100755 --- a/troi/cli.py +++ b/troi/cli.py @@ -119,7 +119,7 @@ def info(patch): def test(args): """Run unit tests""" import pytest - raise SystemExit(pytest.main()) + raise SystemExit(pytest.main(list(args))) if __name__ == "__main__":