Skip to content

Commit

Permalink
Add test output cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Gitman <[email protected]>
  • Loading branch information
Kipok committed Jan 2, 2025
1 parent 366215d commit 448a4e0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/gpu_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:
nvidia-smi
set -o pipefail # this will make sure next line returns non-0 exit code if tests fail
./tests/gpu-tests/run_llama.sh
- name: Cleanup test directory
if: always()
run: |
rm -rf /tmp/nemo-skills-tests/llama
gpu-tests-qwen:
runs-on: self-hosted-nemo-gpus-1
Expand Down Expand Up @@ -77,7 +81,11 @@ jobs:
nvidia-smi
set -o pipefail # this will make sure next line returns non-0 exit code if tests fail
./tests/gpu-tests/run_qwen.sh
- name: Cleanup test directory
if: always()
run: |
rm -rf /tmp/nemo-skills-tests/qwen
gpu-tests-rm:
runs-on: self-hosted-nemo-gpus-1
if: ${{ github.event.label.name == 'run GPU tests' }}
Expand Down Expand Up @@ -107,3 +115,7 @@ jobs:
nvidia-smi
set -o pipefail # this will make sure next line returns non-0 exit code if tests fail
./tests/gpu-tests/run_rm.sh
- name: Cleanup test directory
if: always()
run: |
rm -rf /tmp/nemo-skills-tests/mistral_emb

0 comments on commit 448a4e0

Please sign in to comment.