We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f225491 commit 85a2b40Copy full SHA for 85a2b40
unittests/test_cli.py
@@ -387,3 +387,13 @@ def test_show_env_config_unknown_env(self):
387
self.assertNotIn('Traceback', stdout)
388
self.assertNotIn('Traceback', stderr)
389
self.assertEqual(1, returncode)
390
+
391
+ def test_verbosity(self):
392
+ self.more_options = ['-vvvvv']
393
+ self.system = 'testsys'
394
+ self.action = 'list'
395
+ returncode, stdout, stderr = self._run_reframe()
396
+ self.assertNotEqual('', stdout)
397
+ self.assertNotIn('Traceback', stdout)
398
+ self.assertNotIn('Traceback', stderr)
399
+ self.assertEqual(0, returncode)
0 commit comments