mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 22:02:49 +08:00
15 lines
275 B
Bash
Executable File
15 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
echo -------------------------
|
|
|
|
echo Running Ocelot.UnitTests
|
|
|
|
dotnet restore test/Ocelot.UnitTests/
|
|
dotnet test test/Ocelot.UnitTests/
|
|
|
|
echo Running Ocelot.AcceptanceTests
|
|
|
|
dotnet restore test/Ocelot.AcceptanceTests/
|
|
dotnet test test/Ocelot.AcceptanceTests/
|
|
|
|
|