We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cylc lint
-W
The -W option allows for the specification of additional job attributes.
https://www.jlab.org/hpc/PBS/qsub.html
[runtime] [[foo]] platform = pbs_platform [[[directives]]] -W umask = 0022
cylc lint S014 should look for -W = for LSF rather than just -W
-W =
The text was updated successfully, but these errors were encountered:
I suspect that this would require us to save more state to allow us to differentiate between PBS and LSF jobs, in a similar way to #6348.
The quicker solution is to artificially remove -W from the list of wallclock directives to check for.
Do we want to do this?
Are any of the others problematic in a similar way?
{ "loadleveler": "wall_clock_limit", "lsf": "-W", "moab": "-l walltime", "pbs": "-l walltime", "pbs_multi_cluster": "-l walltime", "sge": "-l h_rt", "slurm": "--time", "slurm_packjob": "--time" }
Sorry, something went wrong.
Is this not feasible? It doesn't need any more state than the current line
cylc lint S014 should look for -W = for LSF rather than just -W Is this not feasible? It doesn't need any more state than the current line
I'm not sure what you mean - that I can narrow the scope of the regex to only include valid values for LSF?
The difference between LSF's -W and PBS's -W:
-W = 10
-W something = 10
That's what I worked out. Working on the fix.
wxtim
No branches or pull requests
Description
https://www.jlab.org/hpc/PBS/qsub.html
Reproducible Example
Expected Behaviour
cylc lint
S014 should look for-W =
for LSF rather than just-W
The text was updated successfully, but these errors were encountered: