Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability to solo a test in visual testing using [Solo] attribute #6137

Merged
merged 3 commits into from
Jan 27, 2024

Conversation

peppy
Copy link
Member

@peppy peppy commented Jan 16, 2024

I've been wanting this for years. Discussed implementation details recently with smoogi and agreed that getting something very simple implemented would be beneficial to test development efficiency.

Basically, rather than commenting out 100 tests in a method where you want to test one specific test repeatedly (commonly using hot reload), you can now add [Solo] to the test in question and the runner will ignore the rest.

This has no effect when tests are run from nunit, as you may expect.

Comment on lines 405 to 407
var solo = methods.FirstOrDefault(m => m.GetCustomAttribute(typeof(SoloAttribute), false) != null);
if (solo != null)
methods = new[] { solo };
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not allow multiple solo methods? Change the logic to a .Select() and overwrite methods only if the resulting array is non-empty.

Would be useful for testing two or more specific methods.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, sounds fine I think.

@peppy peppy requested a review from bdach January 26, 2024 04:49
@peppy
Copy link
Member Author

peppy commented Jan 26, 2024

Hope this one can get in as a quick change. I was just trying to use it and realised it's still not merged 🥲 .

@smoogipoo smoogipoo enabled auto-merge January 27, 2024 07:58
@smoogipoo smoogipoo merged commit 20b6d9e into ppy:master Jan 27, 2024
@peppy peppy deleted the solo-test branch February 29, 2024 01:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants