Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Support High DPI settings (MacBook Pro Retina and other high resolution laptops)

    Hi, that really doesn't look right. Thanks for sharing this. Can you just confirm which DPI you're working in? (percentage-wise) Thanks! Remco

  2. Missing files when running test

    Hi Måns, Thanks for posting! You can solve this by turning on the 'Copy referenced assemblies to workspace' project-level configuration setting inside Project A. Note that there are some performance implications behind doing this. If you can find a way to reference these data files relative …

  3. NCrunch doesn't detect any tests after project reload

    Thanks for sending through the bug report .. I'd just like to add an additional question: - Do you notice this problem while working locally only? (i.e. with the distributed processing disabled)

  4. Optimizing unit tests that use caching

    Hi, thanks for posting! At the moment NCrunch doesn't have any feature that specifically caters towards this .. but I can think of a way that you can greatly improve the efficiency of the engine when working with these specific tests. It involves separating the tests out from the rest of the sui…

  5. NCrunch doesn't detect any tests after project reload

    Hi, thanks for sharing this issue. Would you be able to send through a bug report straight after you've had this happen to you? It would be great if you could set the engine to run tests manually before you do this, to reduce the amount of noise in the log file. Also .. just a few other quest…

  6. NCrunch stuck in Processing/Reprocessing loop

    Thanks, the log was very insightful. It looks like this is being caused by the scanner now targeting the assembly references inside the 'Program Files (x86)\Reference Assemblies' directory. NCrunch detects changes to referenced assemblies also, as this usually requires a rebuild. The handling f…

  7. NCrunch stuck in Processing/Reprocessing loop

    Very little changed between v2.8 and v2.10 - just some small incremental fixes and nothing that should have changed the way this works ... Can you confirm that it was the upgrade that started surfacing this issue? Downgrading back to v2.8 should help us to determine this. Has your AV changed …

  8. 1 project failing to build, doesn't show in ncrunch test window

    Great, thanks! I should hopefully be able to reproduce this then and clean up the experience a bit. Thanks for taking the time to report the issue.

  9. DeploymentItem test passes in VS and Resharper, fails in NCrunch

    Hi, thanks for posting this issue. I really appreciate you taking the time to submit the sample solution as this always make analysis of such issues much easier. Although this may be a surprise, this behaviour is actually by design. NCrunch uses a build optimisation that allows it to build proj…

  10. 1 project failing to build, doesn't show in ncrunch test window

    Wow, that's crazy! By conflicted, do you mean conflicting inside your VCS? So that the XML form of the file was corrupt?

  11. 1 project failing to build, doesn't show in ncrunch test window

    Hi, Thanks for sharing this issue. If there is a project failing, it should be showing in the Tests Window regardless of filter/grouping configuration. If this isn't the case, then it's probably a bug. My guess would be that the spinner is out of sync somehow. Do you get this consistently? A…

  12. Typescript tests which reference typescript files in other projects cause build to fail

    Hi, thanks for sharing this issue. At the moment since NCrunch doesn't support TypeScript (nor anything that sits on top of it), my first thought would be that we do have an option to disable the build step that compiles the TypeScript files. The drawback of this is that NCrunch won't report err…

  13. Problem using NCrunch with FSharp.Data.SqlClient

    Hi, Thanks for sharing this issue. NCrunch does have some known compatibility problems with FSharp type providers. There are ways you can work around these issues - see [url=http://forum.ncrunch.net/yaf_postst1203_Making-NCRUNCH-aware-of-additional-reference--for-which-there-is-no-code--just-dl…

  14. NCrunch having issues building a project referencing a Portable Class Library

    Great stuff - that makes perfect sense! I'm not sure if I have an easy path to fix this right now .. if you need the assembly level attribute to be applied outside of NCrunch but still want NCrunch to work, you can simply disable it with an override. For example: #if !NCRUNCH [assembly: MyAttr…

  15. NCrunch having issues building a project referencing a Portable Class Library

    Thanks Erwin. I'm having some trouble getting this commit to build on my machine. Is there any chance you could send through a simpler example?

  16. NCrunch having issues building a project referencing a Portable Class Library

    Hi Erwin, Thanks for sharing this issue. NCrunch relies on Gallio for its Xunit v1 integration. Gallio is quite old now and it predates the introduction of the PCL libraries - so it isn't really surprising that it is unable to make sense of metadata inside these libraries. However, somethi…

  17. NCrunch keeps saying it is running, even though all child tests have finished

    Thanks. I saw the bug report come through and had a good look through it. The engine definitely considers all test execution runs to be complete. This means that the desync is fairly high up in the UI and won't destabilise the engine itself. Unfortunately I still haven't yet found a way to repro…

  18. Underscores are not visible in the NCrunch log window

    This is a rendering issue that appears on some systems. I'm not sure what causes it. Does changing the text output window font in your global configuration resolve this problem for you?

  19. All projects status "Not built", blue question mark in first column

    Hi, thanks for sharing this issue. I also saw the corresponding bug report come through. At the moment, my suspicion is that there is a race condition in the code responsible for preserving test data associated with projects. Most of the time the projects retain their state/tests when they are …

  20. Every time open solution NCrunch is disabled

    The flag that controls the enable/disable status of NCrunch when a solution has been opened can be found in the .ncrunchsolution file next to your .sln file: <SolutionConfiguration> <FileVersion>1</FileVersion> <AutoEnableOnStartup>False</AutoEnableOnStartup> ... </SolutionConfiguration…