Forum member

Amir Kolsky

12 posts

Posts by Amir Kolsky

  1. There is no way to ignore categories in the engine mode

    This is strange, as when I look at the filter in the engine mode (both of them) it shows Playwright. In the configuration i did have Playright. So the value in the configuration overrides the engine mode. Got it. I'll try to see if the tests still run. Thank you.

  2. Playwright not working

    Out of respect to Remco I'm not going to answer in the heavily sarcastic manner I was about to.

  3. Tests to execute on this machine when DoesNotHaveCategory still runs these test on the machine

    << Sorry, I know it's annoying. The software of this forum is ancient and the image uploads were taken offline for security reasons. We get smashed by spammers here and I need to moderate actively to keep them under control. >> I feel you. I could suggest to allow image posting if the person has …

  4. Tests to execute on this machine when DoesNotHaveCategory still runs these test on the machine

    Oh, so the When does not have category = Playwright is only for remote execution? That is surprising. I have different kinds of tests that I want to disable, and I use test categories to categorize them. "Playwright" is just one example. Another example is "UITests". I also use "ReadDB", "RealOS", "…

  5. There is no way to ignore categories in the engine mode

    So I have done exactly that. I have the [TestCategory("Playwright")] on both "Tests to execute automatically" and "Tests to execute on this machine" I have "When DoesNotHaveCategory 'Playwright'. Verified that the Engine mode is 'Run impacted tests automatically, others manually. Ignore Playwright …

  6. Playwright not working

    Thanks for the reply, Remco. I could try to figure out what needs to be copied, but given that I can use the MSTest runner I can switch to it and run the Playwright tests. As for the comment "But Playwright, together with C#, is not a good fit for that." This misses the practical aspect of - I am…

  7. Playwright not working

    [quote=Der-Albert.com;18675] I, personally, would not use NCrunch for end-to-end with Playwright or similar stuff. Too many external, heavy dependencies. Just use the normal Test Runner. [/quote] I have a reason to run the tests through NCrunch. I'm looking for how to do what I want to do, not fo…

  8. Tests to execute on this machine when DoesNotHaveCategory still runs these test on the machine

    ((You really should allow pasting images directly into the posts like every modern forum system allows) Note: Caches were deleted Configuration -> Filters -> Tests to execute on this machine -> TestFilterBuilder -> When does not have category = Playwright. (this is persistent - i can s…

  9. There is no way to ignore categories in the engine mode

    Unlike what the documentation says.

  10. Playwright not working

    Playwright tests fail. The engine is set to serial execution of tests. Help?

  11. Nasty bug with Ignored tests

    Thanks for the quick reply Remco. There may be an additional option here that can override the default behavior besides changing it. What I usually do is have my tests split according to their frequency of execution (or at least how often I hope they run) and their purpose. Lightweight unit…

  12. Nasty bug with Ignored tests

    I have a bunch of acceptance tests that I marked as ignored (for now). If I make any change to these tests the tests don't run, EXCEPT when I changed: [code=csharp]namespace Engine.TestAcceptance[/code] to [code=csharp]namespace Engine.Tests.Acceptance[/code] Then the ignored test gets unign…