Ocelot/run-tests.bat
2016-10-18 19:12:53 +01:00

17 lines
364 B
Batchfile

echo -------------------------
echo Restoring Ocelot
dotnet restore src/Ocelot
echo Restoring Ocelot.ManualTest
dotnet restore test/Ocelot.ManualTest/
echo Running Ocelot.UnitTests
dotnet restore test/Ocelot.UnitTests/
dotnet test test/Ocelot.UnitTests/
echo Running Ocelot.AcceptanceTests
cd test/Ocelot.AcceptanceTests/
dotnet restore
dotnet test
cd ../../