Skip to content

Commit 3c6d67f

Browse files
committed
Update
1 parent e81c0c5 commit 3c6d67f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build_and_test.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ do
3535
base_name=$(basename ${test_project%.*})
3636
# https://github.com/microsoft/vstest/issues/2080#issuecomment-539879345
3737
dotnet test $test_project -c Release --no-build --logger "trx;LogFilePrefix=$base_name" --results-directory artifacts/test-results -- NUnit.ConsoleOut=0 < /dev/null || :
38+
if [ $? -eq 0 ]
39+
then
40+
echo "Tests passed"
41+
else
42+
echo "Test failures"
43+
fi
3844
done
3945

4046
echo "Printing test results"

0 commit comments

Comments
 (0)