Forum member

alastairs

55 posts

Posts by alastairs

  1. ARM64

    I'd like to add my weight to the request too. I've been a Mac user for nearly as long as I've been an NCrunch user, and initially I thought I'd be unable to use VS again with the release of the Apple Silicon-based models. It seems though that getting a Visual Studio setup running on a Parallels VM i…

  2. NUnit3 TestFixtureSource types have no coverage information associated with them

    Understood--many thanks Remco for your prompt reply!

  3. NUnit3 TestFixtureSource types have no coverage information associated with them

    Hi all I think I've found a bug in NCrunch's support for NUnit3: when using the TestFixtureSource attribute with a type as described [url=https://docs.nunit.org/articles/nunit/writing-tests/attributes/testfixturesource.html#form-3---testfixturesourcetype-sourcetype]here[/url], no coverage informa…

  4. Stuck pending tests in processing queue

    It was indeed that "tests to execute" setting - thanks for pointing it out. I must have set it a long time ago 😂

  5. Stuck pending tests in processing queue

    Thanks Remco :) I've not configured distributed or grid processing at all, and can't find any mention of capabilities in the repo.

  6. Stuck pending tests in processing queue

    Hi there A bunch of my tests are stuck in the pending state, even across VS restarts, as illustrated in this screenshot: [img=https://user-images.githubusercontent.com/52957/100373148-390aa980-3002-11eb-87ac-5a70f51d0efd.png]Stuck pending tests in processing queue[/img] The tests in questio…

  7. Support for VS 2019?

    There's a [url=https://visualstudio.microsoft.com/vs/preview/]public preview of VS 2019[/url] available now, and I was wondering if there was a release in the works to support it?

  8. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    [quote=Remco;11358]Could you clarify how you've managed to do this? Is there a custom build property you've set? I'd like to improve the error handling in this scenario.[/quote] Sure, I used mklink - so it's not a junction point at all actually - so the folder on F: is mapped to the folder on D…

  9. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Oh balls. Yes, that is intentional. I set up a junction point between the folders on the D: and F: drives, for a variety of reasons that basically boils down convenience driven by laziness 😂 The "different solution" I mentioned in my previous post was opened from the F: drive (where the code [i]act…

  10. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    [quote=Remco;11346]Thanks for the extra bug report. Just to clarify, what are the exact steps you take to reproduce this? Are you running 'dotnet test' on your bin\debug assembly while NCrunch is running in the IDE?[/quote] [list=1][*]Open solution [*]Reload and Rebuild all projects via NCrunch …

  11. NetCore2 projects don't get X on exception lines

    I see this on our projects too (looks like I get all the fun bugs 😃) I don't know if this is a common scenario, but we have a global.json file in our repo specifying the dotnet SDK version to use. It reads as follows: [code=jscript]{ "sdk": { "version": "2.0.0" } }[/code] Ours is a …

  12. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Thanks Remco. I've tried the new build, and it looks as though running `dotnet test` on this solution's startup project will still trigger the bug. I'll send a fresh bug report in case the logs show up anything useful.

  13. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Some additional information: one trigger is running `dotnet ef migrations add` on one of the projects in the solution. This generates code which is added to the project, so I [I]suspect[/I] editing the code files/project directories outside of VS will trigger this bug. ** EDIT ** It seems runn…

  14. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Thanks Remco. I've seen it in a smaller solution too (15 projects) - I thought I'd submitted logs for that as well? I'm currently focussed on work in that solution so I'll send another bug report through unless that's still too large?

  15. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    The only discernible pattern I've identified is that when it happens once, it then happens consistently across re-initialisations of NCrunch, even when there's nothing further happening inside or outside VS. However, "Reload and rebuild" on individual projects [I]seems[/I] to work more reliably.

  16. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Yes, it's a .NET Core project - maybe targeting .NET Standard. It does appear that it's fairly transient...

  17. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    I'm seeing the following error pretty often in NCrunch 3.12: [code=plain]NCrunch was unable to parse this project file because of an unexpected error: System.NullReferenceException: Object reference not set to an instance of an object. at nCrunch.Common.IO.DirectoryPath.GetNumberOfCommonDirec…

  18. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Have just seen the update about 3.12.0.1 and am giving that a go. I can confirm that the 3.12 update resolves the problem! Thanks Remco for being on top of this! :-D

  19. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Hi Remco I upgraded our projects to ASP.NET Core 2.0 yesterday, and have found the TestHost projects are failing again; they run successfully when run against a running instance of the web project. The error now appears to be: - running NCrunch 3.11.0.9 in VS 2015 15.3.5 - with the same proje…

  20. Tests utilising Microsoft.AspNet.TestHost fail in NCrunch

    Remco, this build works like a charm, thank you so much.