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
help=f"Select for completed job states ({COMPLETED_STATES}) You need to specify --starttime (-S) at some point in the past, due to how saccont default works (for example '-S now-1week'). This option automatically sets '-E now'. Not compatible with --db.")
1112
-
parser.add_argument('--user', '-u', help="Limit to this or these users. Compatible with --db.")
1113
-
parser.add_argument('--running-at-time', metavar='TIME', help="Only jobs running at this time. Expanded to --start=TIME --end=TIME --state=R. Not compatible with --db.")
1114
1115
parser.add_argument('--csv-input',
1115
1116
help="Don't parse sacct but import this CSV file. It's read with "
help=f"Select for completed job states ({COMPLETED_STATES}) You need to specify --starttime (-S) at some point in the past, due to how saccont default works (for example '-S now-1week'). This option automatically sets '-E now'. Not compatible with --db.")
1127
+
group.add_argument('--running-at-time', metavar='TIME', help="Only jobs running at this time. Not compatible with --db. Expanded to --start=TIME --end=TIME --state=R.")
1128
+
# --db compatibility
1129
+
group=parser.add_argument_group(description="Selectors that also work with --db:")
1130
+
group.add_argument('--user', '-u', help="Limit to this or these users. Compatible with --db.")
1131
+
group.add_argument('--partition', '-r', help="Jobs in this partition. Works with --db. Getting fresh data, an exact match and can be a comma separated list. With --db, a raw glob match.")
help=f"Select for completed job states ({COMPLETED_STATES}) You need to specify --starttime (-S) at some point in the past, due to how saccont default works (for example '-S now-1week'). This option automatically sets '-E now'.")
1174
-
parser.add_argument('--user', '-u', help="Limit to this or these users. This specific argument will work with --db, if it's a single user.")
1175
1184
parser.add_argument('--csv-input',
1176
1185
help="Don't parse sacct but import this CSV file. It's read with "
help=f"Select for completed job states ({COMPLETED_STATES}) You need to specify --starttime (-S) at some point in the past, due to how saccont default works (for example '-S now-1week'). This option automatically sets '-E now'. Not compatible with --db.")
1196
+
group.add_argument('--running-at-time', metavar='TIME', help="Only jobs running at this time. Not compatible with --db. Expanded to --start=TIME --end=TIME --state=R.")
1197
+
# --db compatibility
1198
+
group=parser.add_argument_group(description="Selectors that also work with --db:")
1199
+
group.add_argument('--user', '-u', help="Limit to this or these users. Compatible with --db.")
1200
+
group.add_argument('--partition', '-r', help="Jobs in this partition. Works with --db. Getting fresh data, an exact match and can be a comma separated list. With --db, a raw glob match.")
0 commit comments