test_help_view_default_stdout.gold.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. Usage: python metrix++.py --help
  2. python metrix++.py view --help
  3. python metrix++.py view [options] -- [path 1] ... [path N]
  4. Options:
  5. -h, --help show this help message and exit
  6. --db-file=DB_FILE, --dbf=DB_FILE
  7. Path to a database file to read and process [default:
  8. ./metrixpp.db].
  9. --db-file-prev=DB_FILE_PREV, --dbfp=DB_FILE_PREV
  10. Path to database file with data collected for the
  11. past/previous code revision. It is used to identify
  12. and evaluate/analyze change trends. [default: none].
  13. --log-level=LOG_LEVEL, --ll=LOG_LEVEL
  14. Defines log level. Possible values are
  15. 'DEBUG','INFO','WARNING' or 'ERROR'. Default value is
  16. inherited from environment variable
  17. 'METRIXPLUSPLUS_LOG_LEVEL' if set. [default: INFO]
  18. --format=FORMAT, --ft=FORMAT
  19. Format of the output data. Possible values are 'xml',
  20. 'txt' or 'python' [default: txt]
  21. --nest-regions, --nr If the option is set (True), data for regions is
  22. exported in the form of a tree. Otherwise, all regions
  23. are exported in plain list. [default: False]
  24. --max-distribution-rows=MAX_DISTRIBUTION_ROWS, --mdr=MAX_DISTRIBUTION_ROWS
  25. Maximum number of rows in distribution tables. If it
  26. is set to 0, the tool does not optimize the size of
  27. distribution tables [default: 20]
  28. --scope-mode=SCOPE_MODE, --sm=SCOPE_MODE
  29. Defines the analysis scope mode. 'all' - all available
  30. regions and files are taken into account, 'new' - only
  31. new regions and files are taken into account,
  32. 'touched' - only new and modified regions and files
  33. are taken into account. Modes 'new' and 'touched' may
  34. require more time for processing than mode 'all'
  35. [default: all]