Skip to content
New issue

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

Fix warning in doc #135

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/source/BuildingRunningTesting/BuildRunLandDA.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Each Land DA experiment includes multiple tasks that must be run in order to sat
* - JLANDDA_FORECAST
- Runs the forecast model

Users may run these tasks :ref:`using the Rocoto workflow manager <run-w-rocoto>` or :ref:`using a batch script <run-batch-script>`.
Users may run these tasks :ref:`using the Rocoto workflow manager <run-w-rocoto>`.

.. _run-w-rocoto:

Expand Down Expand Up @@ -333,4 +333,4 @@ The histogram plots OMA values on the x-axis and frequency density values on the
.. list-table:: Snow Depth Plots for 2000-01-04

* - |logo1|
- |logo2|
- |logo2|
6 changes: 3 additions & 3 deletions sorc/test/run_orion_ctest.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash
set -eux

JOB_ID=$(sbatch --job-name=ctest --account=nems --qos=batch --ntasks-per-node=7 --nodes=1 --time=02:00:00 ./orion_ctest.sh | awk '{print $4}')
JOB_ID=$(sbatch --job-name=ctest --account=epic --qos=batch --ntasks-per-node=7 --nodes=1 --time=01:00:00 ./orion_ctest.sh | awk '{print $4}')

CHECK_ID=$(sbatch --job-name=ctest --account=nems --qos=debug --ntasks-per-node=1 --nodes=1 --time=00:01:00 --dependency=afterok:$JOB_ID ./check_ctest.sh)
CHECK_ID=$(sbatch --job-name=ctest --account=epic --qos=debug --ntasks-per-node=1 --nodes=1 --time=00:01:00 --dependency=afterok:$JOB_ID ./check_ctest.sh)

sleep 30m
sleep 20m

if [ -f out.ctest ]; then
cat out.ctest
Expand Down
Loading