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
Original issue opened by @climbfuji migrated from regional_workflow repository: ufs-community/regional_workflow#607
Currently the workflow end-to-end script uses a non-standard format for arguments passed to the script, for example:
./run_WE2E_tests.sh \ tests_file="explist.txt" \ machine="HERA" \ account="gsd-hpcs"
Standard syntax would be
./run_WE2E_tests.sh \ --tests_file="explist.txt" \ --machine="HERA" \ --account="gsd-hpcs"
or
./run_WE2E_tests.sh \ -t "explist.txt" \ -m "HERA" \ -a "gsd-hpcs"
or a mixture of these. This should be changed, because it causes unnecessary confusion.
Also, the documentation in https://ufs-srweather-app.readthedocs.io/en/latest/WE2Etests.html is outdated.
Adopt standard syntax and update documentation.
Do nothing and make life for users harder than necessary.
The text was updated successfully, but these errors were encountered:
Resolved by #586
Sorry, something went wrong.
No branches or pull requests
Original issue opened by @climbfuji migrated from regional_workflow repository: ufs-community/regional_workflow#607
Description
Currently the workflow end-to-end script uses a non-standard format for arguments passed to the script, for example:
Standard syntax would be
or
or a mixture of these. This should be changed, because it causes unnecessary confusion.
Also, the documentation in https://ufs-srweather-app.readthedocs.io/en/latest/WE2Etests.html is outdated.
Solution
Adopt standard syntax and update documentation.
Alternative Solutions
Do nothing and make life for users harder than necessary.
The text was updated successfully, but these errors were encountered: