test_help_limit_default_stdout.gold.txt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Usage: limit.py [options] -- [path 1] ... [path N]
  2. Options:
  3. -h, --help show this help message and exit
  4. --general.log-level=GENERAL.LOG_LEVEL
  5. Defines log level. Possible values are
  6. 'DEBUG','INFO','WARNING' or 'ERROR'. Default value is
  7. inherited from environment variable
  8. 'METRIXPLUSPLUS_LOG_LEVEL' if set. Otherwise, it is
  9. 'ERROR' [default: ERROR]
  10. --general.db-file=GENERAL.DB_FILE
  11. Primary database file to write (by the collector) and
  12. post-process (by other tools) [default: ./metrixpp.db]
  13. --general.db-file-prev=GENERAL.DB_FILE_PREV
  14. Database file with data collected for the
  15. past/previous revision. If it is set for the collector
  16. tool to perform an incremental/iterative collection,
  17. it may reduce the processing time significantly. Post-
  18. processing tools use it in order to recognise/evaluate
  19. change trends. [default: none].
  20. --general.warn=GENERAL.WARN
  21. Defines the warnings mode. 'new' - warnings for new
  22. regions only, 'trend' - warnings for new regions and
  23. for bad trend of modified regions, 'touched' -
  24. warnings for new regions and modified regions, 'all' -
  25. all warnings active [default: all]
  26. --general.min-limit=GENERAL.MIN_LIMIT
  27. A threshold per 'namespace:field' metric in order to
  28. select regions, which have got metric value less than
  29. the specified limit. This option can be specified
  30. multiple times, if it is necessary to apply several
  31. limits. Should be in the format: <namespace>:<field
  32. >:<limit-value>, for example:
  33. 'std.code.complexity:cyclomatic:7'.
  34. --general.max-limit=GENERAL.MAX_LIMIT
  35. A threshold per 'namespace:field' metric in order to
  36. select regions, which have got metric value more than
  37. the specified limit. This option can be specified
  38. multiple times, if it is necessary to apply several
  39. limits. Should be in the format: <namespace>:<field
  40. >:<limit-value>, for example:
  41. 'std.code.complexity:cyclomatic:7'.