We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81c0c5 commit 3c6d67fCopy full SHA for 3c6d67f
build_and_test.sh
@@ -35,6 +35,12 @@ do
35
base_name=$(basename ${test_project%.*})
36
# https://github.com/microsoft/vstest/issues/2080#issuecomment-539879345
37
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
44
done
45
46
echo "Printing test results"
0 commit comments