Forum member

Der-Albert.com

260 posts

Posts by Der-Albert.com

  1. Rider: Continuous Testing?

    If I can open the Rider Menu when this occurs :), then I will do that.

  2. Rider: Right Clicking the NCrunch "Gutter" and moving the mouse covers context menu

    Hi, when I right click on a "gutter" of the NCrunch Test Coverage Marker, then the the Menu appears. But when I move the mouse not directly of the menu (because i'm clumsy) a hover over the gutter, then the test result pop over covers the menu.

  3. Rider: Continuous Testing?

    HI, I left VS and NCrunch a couple years ago. But now NCrunch is available on Rider. I remember that the test where running as I type. Now the run only when I save, i tried to find something in the Documentation but was not able to. Update: That was yesterday, today it is working :)

  4. Rider: Processing Queue seems odd

    Hi, I cannot resize the Processing Queue Tool Window Content. Which is a bummer because the content seems only taken 5-10% of the available width. And nothing is readable.

  5. Rider: Any NCrunch ToolWindows in Windows Mode steals Focus

    Hi, When I change the Mode of a NCrunch Tool Windows (mostly needed for NCrunch Tests) to Window (for Alt Tabbing it). Then I cannot type in the Editor any more. Any Keystroke seems to be eaten by the Tool Windows. Also, if the Tool Window is in float mode, and i click to Options Dot of th…

  6. On every keystroke, NCrunch is running git.exe

    Do have some Git Version type of MS Build Task running on build? If it is gitversion then you can you can set the ms build property DisableGitVersionTask to true, when NCrunch is running. [quote] <PropertyGroup Condition="'$(NCrunch)' == '1'"> <DisableGitVersionTask>true</DisableGitVers…

  7. jetbrains rider plugin?

    Just want to mention that, as a long time NCrunch User, but stopped using VS since 2020. I'm still missing NCrunch in Rider, creating a specific Session with some Tests and run them all on save is not the same ... hopefully @TobbenTM is right, and that @Remco does not say anything about that is also…

  8. NCrunch 4 - unabled to connect to Grid Node

    Argh, this is great, after a two hours of fiddling around. I decided to make a break, I cleared the tumbler, refill it with fresh stuff from the washing machine. I came back to my machine and it is online. And running the tests. So, I disconnected und reconnected. Online again (after Initializing…

  9. NCrunch 4 - unabled to connect to Grid Node

    I installed GridNode v4.0.2 on the "Crunching Machine", and NCrunch v4.0.2 on my local machine. It seems that the Network Connection is not reliable enough for NCrunch (a constant VPN from Router to Router). I have a Not connected -> Negotiating -> Initializing Loop. As far I can tell, the VPN…

  10. NCrunch could deliver a little more detail with exceptions on analysis

    You find the complete Stacktrace and more Information in the readme.md of the repro repository. Yes, it is an Exception von Xunit, but i asume that in nCrunch.Module.XUnit2.Integration.XUnit2DiscoveryEnvironment.FindFrameworkTestsInAssem you call xUnit for every type. You may catch the exception at…

  11. NCrunch could deliver a little more detail with exceptions on analysis

    Hi, i discovered a problem on a test suite in a project, NCrunch helped to find the problem, but i maybe could give more information. Here is the problem. [img]https://github.com/DerAlbertCom/MisbehavingUnittestRunners/raw/master/ncrunch-3-30-with-vs2019-16-2.PNG[/img] The complete descr…

  12. serious typing lag when running NCrunch in VS2019

    I checked the following, pressing a high amount of keys the same time (asdf and hjkl at the same time with high frequenncy, i know there is key rollover or not depending on the keyboard, but this is the question now ;)) in a comment, so that no intellisense poppt up. 1) I tested with NCrunch disa…

  13. serious typing lag when running NCrunch in VS2019

    VS2019 is now not crashing for me anymore, updated everything to the current version. Tests are running locally and on the Grid Node Server. The lag is gone.

  14. Crash in VS2019 with NCrunch 3.27

    Btw. this was what I had got yesterday after installing 3.30.1, crashed two times. Solution had 83 Projects. Now it seems working.

  15. serious typing lag when running NCrunch in VS2019

    Do I need also update the Grid Node. It is transfering files again and again.

  16. serious typing lag when running NCrunch in VS2019

    Well, with this Version on my actual Solution VS2019 crashes and restarted itself two times. Before i was able to work on the solution. ReSharper is also installed (current EAP). Now I'm trying to do some tests.

  17. serious typing lag when running NCrunch in VS2019

    On my machine NCrunch is able to run on two logical core und VS has 6 Cores assigned (Hardware is 4 Cores and Hyperthreading). But currently tests are running on GridNode Servers only, not locally.

  18. serious typing lag when running NCrunch in VS2019

    Can confirm this, NCrunch 3.29 and VS 2019 16.2.1. With NCrunch enabled typing is terrible slow. Did not hat with NCrunch 3.28 (and slightly older VS)

  19. NCrunch and GitVersion

    Since Version 5.0.0-beta5 you can use [code=xml] <PropertyGroup Condition="'$(NCrunch)' == '1'"> <DisableGitVersionTask>true</DisableGitVersionTask> </PropertyGroup> [/code] in the project file to disable the gitversiontask if needed.

  20. NCrunch and GitVersion

    You can fix this with with disabling everything GitVersion related in your Project File. [code=xml] <PropertyGroup Condition="'$(NCrunch)' == '1'"> <WriteVersionInfoToBuildLog>false</WriteVersionInfoToBuildLog> <UpdateAssemblyInfo>false</UpdateAssemblyInfo> <GenerateGitVersion…