diff --git a/.gitea/workflows/deploy-nalu.yml b/.gitea/workflows/deploy-nalu.yml index 624aa03..fe8961d 100644 --- a/.gitea/workflows/deploy-nalu.yml +++ b/.gitea/workflows/deploy-nalu.yml @@ -62,7 +62,7 @@ jobs: run: dotnet build --no-restore --configuration Release - name: Run tests - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test --no-build --configuration Release --verbosity normal --filter "FullyQualifiedName!~PipelineIntegration" # ─── PR Validation ──────────────────────────────────────────────────────── pr-validation: diff --git a/tests/Nalu.Tests/DeterministicLayerTests.cs b/tests/Nalu.Tests/DeterministicLayerTests.cs index 5c6f956..384ef6c 100644 --- a/tests/Nalu.Tests/DeterministicLayerTests.cs +++ b/tests/Nalu.Tests/DeterministicLayerTests.cs @@ -1,6 +1,6 @@ using FluentAssertions; -using Nalu.Api.Models; -using Nalu.Api.Services; +using Nalu.Web.Models; +using Nalu.Web.Services; using Xunit; namespace Nalu.Tests; diff --git a/tests/Nalu.Tests/Nalu.Tests.csproj b/tests/Nalu.Tests/Nalu.Tests.csproj index 54b15a1..221de51 100644 --- a/tests/Nalu.Tests/Nalu.Tests.csproj +++ b/tests/Nalu.Tests/Nalu.Tests.csproj @@ -19,6 +19,6 @@ - + diff --git a/tests/Nalu.Tests/NewValidatorsTests.cs b/tests/Nalu.Tests/NewValidatorsTests.cs index 2ac69eb..0157ea2 100644 --- a/tests/Nalu.Tests/NewValidatorsTests.cs +++ b/tests/Nalu.Tests/NewValidatorsTests.cs @@ -1,6 +1,6 @@ using FluentAssertions; -using Nalu.Api.PostProcessors; -using Nalu.Api.Services; +using Nalu.Web.PostProcessors; +using Nalu.Web.Services; using Xunit; namespace Nalu.Tests; diff --git a/tests/Nalu.Tests/PipelineIntegrationTests.cs b/tests/Nalu.Tests/PipelineIntegrationTests.cs index 7d3081e..8695f1e 100644 --- a/tests/Nalu.Tests/PipelineIntegrationTests.cs +++ b/tests/Nalu.Tests/PipelineIntegrationTests.cs @@ -3,7 +3,7 @@ using System.Net.Http.Json; using FluentAssertions; using Microsoft.AspNetCore.Mvc.Testing; using Microsoft.Extensions.DependencyInjection; -using Nalu.Api.Models; +using Nalu.Web.Models; using Xunit; namespace Nalu.Tests; diff --git a/tests/Nalu.Tests/ValidatorLoaderTests.cs b/tests/Nalu.Tests/ValidatorLoaderTests.cs index 1389ee3..73833e2 100644 --- a/tests/Nalu.Tests/ValidatorLoaderTests.cs +++ b/tests/Nalu.Tests/ValidatorLoaderTests.cs @@ -1,5 +1,5 @@ using FluentAssertions; -using Nalu.Api.Services; +using Nalu.Web.Services; using Xunit; namespace Nalu.Tests;