Skip to content

Commit

Permalink
refactoring test dirpaths - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Sep 27, 2024
1 parent 4a526c0 commit 72b2f21
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
- name: worker pilot \#1 stdout/stderr
if: always()
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot-1.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot.out | cat
- name: worker tasks \#1 stdouts/stderrs
if: always()
run: |
Expand All @@ -241,7 +241,7 @@ jobs:
- name: worker pilot \#2 stdout/stderr
if: always() && env.N_WORKERS == '2'
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot-2.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot.out | cat
- name: worker tasks \#2 stdouts/stderrs
if: always() && env.N_WORKERS == '2'
run: |
Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:
- name: worker pilot \#1 stdout/stderr
if: always()
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot-1.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot.out | cat
- name: worker tasks \#1 stdouts/stderrs
if: always()
run: |
Expand All @@ -350,7 +350,7 @@ jobs:
- name: worker pilot \#2 stdout/stderr
if: always() && env.N_WORKERS == '2'
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot-2.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot.out | cat
- name: worker tasks \#2 stdouts/stderrs
if: always() && env.N_WORKERS == '2'
run: |
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
- name: worker pilot \#1 stdout/stderr
if: always()
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot-1.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot.out | cat
- name: worker tasks \#1 stdouts/stderrs
if: always()
run: |
Expand All @@ -451,7 +451,7 @@ jobs:
- name: worker pilot \#2 stdout/stderr
if: always() && env.N_WORKERS == '2'
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot-2.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot.out | cat
- name: worker tasks \#2 stdouts/stderrs
if: always() && env.N_WORKERS == '2'
run: |
Expand Down Expand Up @@ -558,7 +558,7 @@ jobs:
- name: worker pilot \#1 stdout/stderr
if: always()
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot-1.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-1/pilot.out | cat
- name: worker tasks \#1 stdouts/stderrs
if: always()
run: |
Expand All @@ -567,7 +567,7 @@ jobs:
- name: worker pilot \#2 stdout/stderr
if: always() && env.N_WORKERS == '2'
run: |
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot-2.out | cat
more $CI_TEST_RUN_STDOUT_STDERR_DIR/worker-2/pilot.out | cat
- name: worker tasks \#2 stdouts/stderrs
if: always() && env.N_WORKERS == '2'
run: |
Expand Down
2 changes: 1 addition & 1 deletion resources/launch_scripts/local-scan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ for i in $(seq 1 $nworkers); do
$launch_scripts_dir/launch_worker.sh \
--client-startup-json $CI_SKYSCAN_STARTUP_JSON \
--debug-directory $SKYSCAN_DEBUG_DIR \
2>&1 | tee $dir/pilot-$i.out \
2>&1 | tee $dir/pilot.out \
&
echo -e "\tworker #$i launched"
done
Expand Down

0 comments on commit 72b2f21

Please sign in to comment.