From a2053be12ed0739ef3e2c1898e7e3921bafc1b2a Mon Sep 17 00:00:00 2001 From: Jared Nance Date: Mon, 1 Oct 2018 07:46:09 -0700 Subject: [PATCH] run ResourceEntitySeparationExampleTests on CI --- Build.ps1 | 5 ++++- build.sh | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Build.ps1 b/Build.ps1 index 8ff62d6578..6d4621d7e0 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -35,7 +35,10 @@ CheckLastExitCode dotnet test ./test/OperationsExampleTests/OperationsExampleTests.csproj CheckLastExitCode -dotnet build .\src\JsonApiDotNetCore -c Release +dotnet test ./test/ResourceEntitySeparationExampleTests/ResourceEntitySeparationExampleTests.csproj +CheckLastExitCode + +dotnet build ./src/JsonApiDotNetCore -c Release CheckLastExitCode Write-Output "APPVEYOR_REPO_TAG: $env:APPVEYOR_REPO_TAG" diff --git a/build.sh b/build.sh index 50f2ab9c99..1230bd6414 100755 --- a/build.sh +++ b/build.sh @@ -9,3 +9,4 @@ dotnet test ./test/UnitTests/UnitTests.csproj dotnet test ./test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj dotnet test ./test/NoEntityFrameworkTests/NoEntityFrameworkTests.csproj dotnet test ./test/OperationsExampleTests/OperationsExampleTests.csproj +dotnet test ./test/ResourceEntitySeparationExampleTests/ResourceEntitySeparationExampleTests.csproj