test_help_collect_default_stdout.gold.txt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Usage: collect.py [options] -- [path 1] ... [path N]
  2. Options:
  3. -h, --help show this help message and exit
  4. --general.db-file=GENERAL.DB_FILE
  5. Primary database file to write (by the collector) and
  6. post-process (by other tools) [default: ./metrixpp.db]
  7. --general.db-file-prev=GENERAL.DB_FILE_PREV
  8. Database file with data collected for the
  9. past/previous revision. If it is set for the collector
  10. tool to perform an incremental/iterative collection,
  11. it may reduce the processing time significantly. Post-
  12. processing tools use it in order to recognise/evaluate
  13. change trends. [default: none].
  14. --general.non-recursively
  15. If the option is set (True), sub-directories are not
  16. processed [default: False]
  17. --general.exclude-files=GENERAL.EXCLUDE_FILES
  18. Defines the pattern to exclude files from processing
  19. [default: ^[.]]
  20. --general.proctime.on
  21. If the option is set (True), the tool measures
  22. processing time per every file [default: False]
  23. --general.log-level=GENERAL.LOG_LEVEL
  24. Defines log level. Possible values are
  25. 'DEBUG','INFO','WARNING' or 'ERROR'. Default value is
  26. inherited from environment variable
  27. 'METRIXPLUSPLUS_LOG_LEVEL' if set. Otherwise, it is
  28. 'ERROR' [default: ERROR]
  29. --std.code.complexity.on
  30. Enables collection of complexity metrics: cyclomatic
  31. by McCabe [default: False]
  32. --std.code.cpp.files=STD.CODE.CPP.FILES
  33. Enumerates filename extensions to match C/C++ files
  34. [default: *.c,*.h,*.cpp,*.hpp,*.cc,*.hh,*.cxx,*.hxx]
  35. --std.code.cs.files=STD.CODE.CS.FILES
  36. Enumerates filename extensions to match C/C++ files
  37. [default: *.cs]
  38. --std.code.dumper.on If the option is set (True), HTML files are generated
  39. for every parsed file containing code (for
  40. troubleshooting purposes only) [default: False]