From f95e23118ced9dc47b3a19fb110cc1a081df1689 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 6 May 2022 21:57:39 +0300 Subject: [PATCH] Fix test --- tests/commands/test_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index 258994d4..77376a2c 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -163,7 +163,7 @@ int main() { ) result = clirunner.invoke( pio_test_cmd, - ["-d", str(project_dir), "-e", "native"], + ["-d", str(project_dir), "-e", "native", "--verbose"], ) validate_cliresult(result) assert "Called from my_extra_fun" in result.output @@ -365,7 +365,7 @@ int main() { ) result = clirunner.invoke( pio_test_cmd, - ["-d", str(project_dir), "-e", "native"], + ["-d", str(project_dir), "-e", "native", "--verbose"], ) validate_cliresult(result) assert all(f in result.output for f in ("Found custom unity_config", "dummy_test"))