Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. slow typing in VS2015

    The fix the issue with VBCSCompiler.exe overstepping NCrunch's processing boundaries is now available in [url=http://www.ncrunch.net/download]v2.24[/url].

  2. NCrunch is not seeing some tests

    The fix for this issue is now available with [url=http://www.ncrunch.net/download]v2.24[/url].

  3. Stuck at "Loading projects (37 of 36)"

    The fix for this issue is now available as part of [url=http://www.ncrunch.net/download]v2.24[/url].

  4. Stuck at "Loading projects (37 of 36)"

    Thanks for sending through the bug report. This seems to be a downstream problem caused by one of the projects failing to load. Try turning off the setting and examining the list of load errors. One of these projects doesn't seem to have normal platform/configuration settings, see [url=http://w…

  5. What triggers a build?

    [quote=MikeWard;8994]OK, I see the problem. I need to include the bundle.js and bundle.js.map files in my project so the Visual Studio Publish Profile will use them. It feels like I need a, "consider these files as not part of the solution" option.[/quote] There is a way we can do this :) Wher…

  6. Can't build on grid node

    Would it be possible for you to get hold of a log on the grid node server of when it tries to build one of these projects? You can turn on logging in the grid node configuration tool. Make sure you point it to an area of your hard drive where you can easily find the log. The grid node should sp…

  7. What triggers a build?

    It looks like something isn't right with the files you have included in the workspace. You'll want to avoid including derived files in the workspace where possible. Check for broad use of the 'Additional files to include' setting. From memory, the 'Files excluded from auto-build' setting was in…

  8. Can't build on grid node

    Hi Xiaoming, This problem is caused by a cross-version issue between your dev machine and the grid node. Basically, your dev machine is building the project using the VS2015 build tools, while the grid node is using an older set of tools. NCrunch will normally use the same set of build tool…

  9. What triggers a build?

    [quote=MikeWard;8981]I agree that it's likely some other tooling changing something and triggering the build. I'll see if I can put together a sample project that illustrates the problem.[/quote] It could still be NCrunch .. but we won't know until we isolate it. Do let me know if you learn anyt…

  10. NCrunch is not seeing some tests

    Thanks for sharing the extra details. I really need a code sample that can reproduce this problem, as right now I don't know what sort of code arrangement is causing it. When I try creating a simple inheritance structure between a generic base class and a descending fixture under NUnit 3.4.1, the …

  11. What triggers a build?

    Hi, thanks for posting. Normally, NCrunch's [url=http://www.ncrunch.net/documentation/reference_project-configuration_files-excluded-from-auto-build]Files Excluded From Auto Build[/url] setting should restrict the engine from automatically firing off if you make a text change to any file type spe…

  12. slow typing in VS2015

    [quote=piero;8976]Hi I'm also affected by this, as soon as I try and get some intellisense the VBCSCompiler.exe shoots up to 14% cpu temporarily, causing lag during typing, the only way to continue development is to disable Ncrunch... Again I agree that now it's rendered Ncrunch totally useless as I…

  13. NCrunch is not seeing some tests

    Thanks for sharing the code sample. I've had a go at reproducing this issue, but it looks like there is some complexity involved here. Inheriting a simple fixture from the above base class doesn't seem to surface the problem. Are you able to try and create a full code sample that can reproduce th…

  14. Static variables and methods within Owin test server

    Great to hear! Nice work on fixing the issue and thanks for confirming!

  15. NCrunch is not seeing some tests

    Thanks for sending through the bug report. The report contained a single error: System.Exception: Unable to resolve underlying type for NUnit fixture: Tests.Common.SimpleSUTBase`1 at nCrunch.Module.NUnit3.Integration.NUnit3DiscoveryListener.resolveClassMethod(String className, String methodN…

  16. Static variables and methods within Owin test server

    Hi Ant, My first thought is that these routes may be stored statically, so recreating them may be giving the duplication error. The tests would thus be state/sequence dependent. It should be possible to analyse this behaviour by debugging multiple tests within the same execution run, and examin…

  17. NCrunch is not seeing some tests

    Hi, thanks for sharing this issue. Do the tests run when you target them directly through the Tests Window? Are any of your tests being generated using TestCaseSource? Are you making use of distributed processing or Capabilities in any way? Also, could you submit a bug report when you've…

  18. NCrunch Engine crashing

    [quote=Beaker;8959] Unfortunately I cannot remember what I did. Before removing the cache folder I zipped it. If you want I can sent it to you, so you can examine what is corrupt. Maybe this can help you. Furthermore this is a BizTalk solution, thus during build there are a lot of special builds…

  19. Console tool reports "weird" Build Results

    Thanks, it's great to hear that you managed to identify the problem. I admit that I'm not sure how to sensibly handle such a scenario using the existing return codes, as there may be perfectly valid reasons for why a test wasn't executed in a run. To expect any unexecuted test to be an error sit…

  20. Console tool reports "weird" Build Results

    Are your tests making use of any [url=http://www.ncrunch.net/documentation/reference_global-configuration_capabilities-of-this-computer]capabilities[/url]? It looks like the tests are being queued, but the engine is electing not to run them. Are you using the console tool on a dev machine, or on…