You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openfisca_core/scripts/openfisca_command.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,9 @@ def build_test_parser(parser):
38
38
parser.add_argument('-p', '--pdb', action='store_true', default=False, help="drop into debugger on failures or errors")
39
39
parser.add_argument('--performance-graph', '--performance', action='store_true', default=False, help="output a performance graph in a 'performance_graph.html' file")
parser.add_argument('-v', '--verbose', action='store_true', default=False, help="increase output verbosity. If specified, output the entire calculation trace.")
42
+
parser.add_argument('-a', '--aggregate', action='store_true', default=False, help="increase output verbosity to aggregate. If specified, output the avg, max, and min values of the calculation trace. This flag has no effect without --verbose.")
43
+
parser.add_argument('-d', '--max-depth', type=int, default=None, help="set maximal verbosity depth. If specified, output the calculation trace up to the provided depth. This flag has no effect without --verbose.")
42
44
parser.add_argument('-o', '--only-variables', nargs='*', default=None, help="variables to test. If specified, only test the given variables.")
43
45
parser.add_argument('-i', '--ignore-variables', nargs='*', default=None, help="variables to ignore. If specified, do not test the given variables.")
0 commit comments