Forum member

anemitoff

8 posts

Posts by anemitoff

  1. Help debugging issue with impacted tests detection

    I created a minimal solution to test some theories. A solution with a single xunit class library and two tests in a single file. With only a few NuGet packages: [code=xml] <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net9.0</TargetFramework> <ImplicitUsings…

  2. Help debugging issue with impacted tests detection

    I have added the "Is Impacted" column to the Tests Window. I set the engine mode to "Run all tests manually". I pinned all the tests in one Test class so force them to be listed. They all show "False" for is impacted. I add a new line to one of the tests in that class. All the tests I have pinn…

  3. Help debugging issue with impacted tests detection

    Interesting, I changed a code file, and initially I see 22 tests queued and then a few seconds later it jumps up to the 188 again.

  4. Help debugging issue with impacted tests detection

    My engine mode is: [code=xml] <EngineMode> <Name>Run impacted (except Integration,DbTest,Manual)</Name> <Settings> <AlignOutOfDateStatusWithImpactStatus>True</AlignOutOfDateStatusWithImpactStatus> <TestsToExecuteAutomatically>(IsImpacted AND DoesNotHaveCategor…

  5. Help debugging issue with impacted tests detection

    I just noticed today that for some reason, when I change a single line in a single test in a test project, all 188 tests in that test project are being detected as impacted and re-running. As some point last week this was not a problem. There may have been a patch installed on my machine (which is…

  6. xunit v3, missing xunit.v3.runner.inproc.console net6.0?

    I too had the problem with xunit.v3 and xunit.v3.runner.inproc.console not found. Installing NCrunch 5.13.0.1 did allow the test projects to build and execute. I have a few tests of Blazor components using BUnit where I get the following error (which doesn't occur under `dotnet test`). *This er…

  7. Xunit.v3 analysis failure

    I tried clearing and restoring my NuGet packages. Now, the same project analyses are still failing with the same error. And I have an additional error in Tests window "Unable to Restore required NuGet Packages"

  8. Xunit.v3 analysis failure

    The release notes for version 5.11.0.1 say " Xunit runner DLLs are now resolved via the Nuget package cache". I have a solution with a number of projects and test projects. Some of my test projects upgraded to use xUnit.v3 (0.7.0-pre.15) work fine with NCrunch and some give me the error The …