From aeb53a06f541caeb7f61dc05125fd1818d1c6619 Mon Sep 17 00:00:00 2001 From: 9swampy Date: Wed, 17 Apr 2024 13:46:35 +0100 Subject: [PATCH] Split Core and full fat test suites. --- .github/workflows/build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b99d062..b6f8a4d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,15 @@ jobs: - name: Telnet.CiTests uses: microsoft/vstest-action@v1.0.0 with: - testAssembly: PrimS.Telnet.*CiTests.dll + testAssembly: PrimS.Telnet.CiTests.dll + searchFolder: ./**/bin/Debug/**/ + runInParallel: true + + # Can't apparently run both full fat and core test suites together.' + - name: Telnet.*.CiTests + uses: microsoft/vstest-action@v1.0.0 + with: + testAssembly: PrimS.Telnet.*.CiTests.dll searchFolder: ./**/bin/Debug/**/ runInParallel: true @@ -103,7 +111,7 @@ jobs: - name: Publish to GitHub run: dotnet nuget push "Telnet.$Env:NuGetVersionV2ext.nupkg" --api-key ${{ secrets.PUBLISH_TO_GITHUB_PACKAGES }} --source "https://nuget.pkg.github.com/9swampy/index.json" - #Login to Nuget 9swampy->Api Keys and regenerate, copy to NUGET_APIKEY + # Login to Nuget 9swampy->Api Keys and regenerate, copy to NUGET_APIKEY - name: Publish to Nuget if: github.ref == 'refs/heads/master' run: nuget push "Telnet.$Env:NuGetVersionV2ext.nupkg" ${{ secrets.NUGET_APIKEY }} -source https://api.nuget.org/v3/index.json