Changed scripts so acceptance tests pass when you run them from root

This commit is contained in:
TomPallister 2016-09-22 20:52:37 +01:00
parent 741fcc644d
commit 61dbb675c5
2 changed files with 8 additions and 5 deletions

View File

@ -8,8 +8,10 @@ dotnet test test/Ocelot.UnitTests/
echo Running Ocelot.AcceptanceTests echo Running Ocelot.AcceptanceTests
dotnet restore test/Ocelot.AcceptanceTests/ cd test/Ocelot.AcceptanceTests/
dotnet test test/Ocelot.AcceptanceTests/ dotnet restore
dotnet test
cd ../../
echo Building Ocelot echo Building Ocelot

View File

@ -8,7 +8,8 @@ dotnet test test/Ocelot.UnitTests/
echo Running Ocelot.AcceptanceTests echo Running Ocelot.AcceptanceTests
dotnet restore test/Ocelot.AcceptanceTests/ cd test/Ocelot.AcceptanceTests/
dotnet test test/Ocelot.AcceptanceTests/ dotnet restore
dotnet test
cd ../../