Skip to content

Commit

Permalink
Beautify outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Nov 23, 2024
1 parent 4c73aa0 commit 6aa76f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ jobs:
- name: Update Helm dependencies
run: |
printf '%s' '${{ steps.find.outputs.chart_dirs }}' \
| xargs -d , -L 1 helm dependency update
| xargs -d , -L 1 helm dependency update \
2> >(grep -v 'found symbolic link' >&2)
- name: Install helm-unittest
run: helm plugin install https://github.com/helm-unittest/helm-unittest.git --version v0.6.3
- name: Run unit tests
run: |
printf '%s' '${{ steps.find.outputs.chart_dirs }}' \
| xargs -d , -L 1 helm unittest
| xargs -d , -L 1 helm unittest --color \
2> >(grep -v 'found symbolic link' >&2)

0 comments on commit 6aa76f5

Please sign in to comment.