Configuration/scripts/travis_test.sh

16 строки
411 B
Bash
Executable File

#!/bin/bash
# Run unit tests
cd test/Steeltoe.Extensions.Configuration.CloudFoundry.Test
dotnet restore --configfile ../../nuget.config
dotnet test --framework netcoreapp1.1
if [[ $? != 0 ]]; then exit 1 ; fi
cd ../..
cd test/Steeltoe.Extensions.Configuration.ConfigServer.Test
dotnet restore --configfile ../../nuget.config
dotnet test --framework netcoreapp1.1
if [[ $? != 0 ]]; then exit 1 ; fi
cd ../..