diff options
author | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2013-05-01 11:01:00 -0400 |
---|---|---|
committer | cslocum <cslocum@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2013-05-01 11:01:00 -0400 |
commit | 677386220607063ae83e5c4443feacaf22c288f8 (patch) | |
tree | f48f7d0010ba42dbec2d8ebca6c2776fb3f81bce | |
parent | 9efb3c4a1a36c91965f6660fd5c5b28d754c9f13 (diff) | |
download | steuermann-677386220607063ae83e5c4443feacaf22c288f8.tar.gz |
add 4 our delay to pyetc tests
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@961 d34015c8-bcbb-4646-8ac8-8ba5febf221d
-rw-r--r-- | sm/pyetc.sm | 4 | ||||
-rw-r--r-- | sm/pyetc_midday.sm | 35 |
2 files changed, 39 insertions, 0 deletions
diff --git a/sm/pyetc.sm b/sm/pyetc.sm index cb81c49..29e66c8 100644 --- a/sm/pyetc.sm +++ b/sm/pyetc.sm @@ -3,7 +3,11 @@ TABLE pyetc HOST etccartier + CMD delay_four_hours RUN "/bin/sleep 4h" + AFTER init/* + CMD trunk RUN "/data1/nightly/trunk/test-ppsetc -d trunk " + AFTER delay_four_hours AFTER init/* CMD refactored RUN "/data1/nightly/refactored/test-ppsetc -d refactored " diff --git a/sm/pyetc_midday.sm b/sm/pyetc_midday.sm new file mode 100644 index 0000000..1ed66c3 --- /dev/null +++ b/sm/pyetc_midday.sm @@ -0,0 +1,35 @@ +TABLE init HOST etccartier + CMD env RUN "env | sort" + +TABLE pyetc HOST etccartier + + CMD trunk RUN "/data1/nightly/trunk/test-ppsetc -d trunk " + AFTER init/* + + CMD refactored RUN "/data1/nightly/refactored/test-ppsetc -d refactored " + AFTER trunk + AFTER init/* + + CMD jwst RUN "/data1/nightly/jwpetc_dev/test-ppsetc -d" + AFTER refactored + AFTER init/* + + CMD rt RUN "/data1/nightly/rt/rt.csh pyetc" + AFTER jwst + AFTER init/* + + CMD rfim RUN "/data1/nightly/rfim/test-ppsetc -d rfim " + AFTER rt + AFTER init/* + +TABLE pyetc HOST etccartier + CMD doc_build RUN "/data1/nightly/trunk/pyetc/doc/auto_doc_build" + AFTER etccartier:pyetc/trunk + +TABLE test_final HOST ssb + CMD pyetc.expect RUN "test_import pyetc ; test_expected pyetc" + AFTER *:pyetc/* + +TABLE save_reference_files HOST etccartier + CMD save_refs RUN "python /data1/nightly/save_refs.py" + AFTER *:test_final/* |