Skip to content

Commit

Permalink
test UT
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeaty-cisco committed May 10, 2024
1 parent 1a46042 commit aa6a229
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/commit-check-new
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,12 @@ docker build tests/ -t helm-tests
# Control Plane unit tests
docker run -v "$PWD/:/charts" helm-tests bats tests/ut/xrd-control-plane

# vRouter unit tests
docker run -v "$PWD/:/charts" helm-tests bats tests/ut/xrd-vrouter
echo
echo "Running vRouter unit tests..."
if ! docker run -v "$PWD/:/charts" helm-tests bats tests/ut/xrd-vrouter; then
echo "vRouter unit tests failed, check output and fix issues." >&2
FAILURES=$((FAILURES+1))
fi


echo
Expand Down

0 comments on commit aa6a229

Please sign in to comment.