Files
csharp/ci.sh
Adam Friedman c0a42ad884 Custom validation of server certificate for WebSockets (#103)
* Improve SSL customisation for WebSockets

kubernetes-client/csharp#102

* First test for exec-in-pod over WebSockets.

Also, implement basic mock server for testing WebSockets.

kubernetes-client/csharp#102

* Attempt to handle raciness of Watcher tests.

kubernetes-client/csharp#102

* Attempt to handle raciness of ByteBuffer test.

kubernetes-client/csharp#102
2018-03-19 22:03:28 -07:00

16 lines
237 B
Bash
Executable File

#!/usr/bin/env bash
# Exit on any error
set -e
# Ensure no compile errors in all projects
dotnet restore
dotnet build --no-restore
# Execute Unit tests
cd tests
dotnet test --no-restore --no-build
if [[ $? != 0 ]]; then
exit 1
fi