Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Engine doesn't match project name if it contains a dot

    [quote=mortan;8417] Hello Remco, unfortunately I can't reproduce the issue anymore. I have the strong suspicion that it was only a temporary problem solved by restarting Visual Studio. I will keep my eyes open if it happens again and if I find a reproducible scenario I'll let you know! Thanks…

  2. Approvals and Distributed Processing

    Hi, You are correct in your understanding that there is no need to use the 'Additional files for grid processing' if you have already included the files using the 'Additional files to include' setting. From my understanding, you've done everything that should be required to get this to work .. …

  3. Running tests manually while engine mode is in Impacted does not run all tests

    Hi, This looks suspiciously like a problem that has been identified in the 2.19 (and possibly versions prior) release. NCrunch has a problem where it is clearing things out of the processing queue in response to certain events (such as builds being completed or projects being changed). There …

  4. Tests are not loaded

    Thanks for sharing the bug report. From your screenshot, I noticed that you have a 'Test filter' set to 'False' on your local machine. This will tell the engine not to execute any test (as the filter evaluates to false). Try changing this to True, and see if this makes any difference.

  5. Engine doesn't match project name if it contains a dot

    I've looked into this issue, but unfortunately I'm having trouble reproducing it. When I create a new project with the name 'Playground.IntegrationTests', then create a new custom engine mode using filter: IsNotInProjectWithName 'Playground.IntegrationTests', the tests seem to be excluded from au…

  6. Lightswitch application not building

    Hi, Thanks for posting! Unfortunately, Lightswitch applications are not currently supported by NCrunch. You are welcome to [url=https://ncrunch.uservoice.com]request this as a feature if you like[/url].

  7. Tests are not loaded

    [quote=jofors;8407]Hello again, thank you for the suggestions. I have done the three steps you suggested and now all my tests are being loaded. So far so good but when I now tries to start tests, they do not run and does not come on the 'Processing Queue'. But in the Tests-window the status says …

  8. Tests are not loaded

    Thanks for sending through the bug report. It contained something very interesting: Unable to load description for framework 'nCrunch.Module.Gallio.Integration.GallioTestFramework': System.MissingMethodException: Metoden hittades inte: Void nCrunch.TestExecution.TestFrameworkDescription.set_Fram…

  9. Engine doesn't match project name if it contains a dot

    Hi, Thanks for sharing this issue. I'll take a look and will see what I can do :)

  10. Issue connecting to SQL in NCrunch test nodes

    Hi Sheryl, Thanks for sharing this issue. When running as a service (which is the default setup), the NCrunch Grid Node will usually run as the system user. Because the test task hosts all assume the identity of the grid node itself, they will naturally run under the same user. The easiest w…

  11. .NET framework 4.6.1

    Hi, Can you share your experiences with the 2.20 link above? On all angles I've tested, this does introduce support for 4.6.1. I'm concerned you may be encountering a different problem with the build.

  12. NUnit duplicate name warning without duplicate names

    It looks like this issue will require a code change to NUnit to fix. I've reported it to the NUnit team - [url=https://github.com/nunit/nunit/issues/1331]https://github.com/nunit/nunit/issues/1331[/url].

  13. Best method for referencing third-party assemblies

    [quote=MarcChu;8384]Okay, well 'Copy referenced assemblies to workspace' isn't really a killer, since it's only necessary for the one project. The over-arching point of this post was to figure out the right way to do things, because the amount of different options available can tend to make things…

  14. Tests are not loaded

    Hi, Check that you haven't disabled any of your test frameworks using the NCrunch solution-level configuration settings. The Git Provider warning should be in no way related to this kind of problem. Would you mind submitting a bug report after you've initialised the system? The log in the …

  15. Test Count difference with Resharper

    Hi, Perhaps you can try comparing some test list exports? There are many different ways of counting tests. A few things to consider: - Are the fixtures themselves being counted as tests? A fixture technically has its own pass/fail result, so sometimes it can count - Are ignored tests count…

  16. Can't get FsCheck-based property tests to work with NCrunch

    [quote=larsw;8382] Tested with NCrunch 2.16.0.3[/quote] I think that this is likely to be the problem :) There have been a few fixes to Xunit v2 support since 2.16 was released. 2.17 in particular had a number of targeted fixes around Xunit2 extensions. When I test the code you've provide…

  17. Can't get FsCheck-based property tests to work with NCrunch

    Hi Lars, According to prior experience, NCrunch should work correctly with FsCheck, though you may need the [Fact] to get it to recognise the tests. It's possible that something has changed or you've found a feature that NCrunch doesn't work with. Are you able to share any sample code that can …

  18. Best method for referencing third-party assemblies

    Although these references aren't being referenced using a path, they are being resolved to your Program Files directory, possibly via an extended search path (MSBuild search logic is very complex). NCrunch has a piece of logic inside it that stops it from copying assemblies inside 'Program Files' i…

  19. Path to nuget cache?

    [quote=moswald;8374]Aha, I have it figured out. You were right, it didn't have anything to do with the nuget package itself. The build process knows about the nuget cache, and so nCrunch shouldn't need to do anything special. [i]However[/i], nCrunch doesn't automatically copy the generated .nuget…

  20. Path to nuget cache?

    Thanks! The error message I receive from this code when testing it under the latest dev version of NCrunch is as follows: System.InvalidOperationException: IExampleApi doesn't look like a Refit interface. Make sure it has at least one method with a Refit HTTP method attribute and Refit is instal…