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 regex support for run-tests command #274

Open
Alcamech opened this issue Nov 22, 2021 · 0 comments
Open

Add regex support for run-tests command #274

Alcamech opened this issue Nov 22, 2021 · 0 comments

Comments

@Alcamech
Copy link

Currently the run-testscommand supports a space separated list of test classes or empty params which runs all test. I suggest solenopsis supports a regex search feature for the run-tests command.

E.g. - solenopsis run-tests TestFile.* will match TestFile, TestFile_Foo, TestFile_Bar, TestFileFoo, TestFileBar, etc.

TestFile.*

TestFile - matches the characters TestFile literally (case sensitive)
. - matches any character (except for line terminators)
* - matches the previous token between zero and unlimited times, as many times as possible, giving back as needed (greedy)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant