-
Notifications
You must be signed in to change notification settings - Fork 10
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 support for UniqueId selectors #91
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First of all, thank you for your contribution. I will dedicate some time to merge this soon.
src/main/java/co/helmethair/scalatest/descriptor/ScalatestDescriptor.java
Show resolved
Hide resolved
eeb12ab
to
c299772
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work, I would only change one thing.
c299772
to
e5c6e6e
Compare
One more thing: I cannot update your branch, main is ahead and cannot merge until it is up to date. |
Will do, could you also wait for @marcphilipp's approval before merging? |
Sure thing, happy to have another set of eyes on it.
…On Tue, Sep 27, 2022, 15:27 Alexis Tual ***@***.***> wrote:
One more thing: I cannot update your branch, main is ahead and cannot
merge until it is up to date.
Will do, could you also wait for @marcphilipp
<https://github.com/marcphilipp>'s approval before merging?
—
Reply to this email directly, view it on GitHub
<#91 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADST4FM7WEM2UTF64HF2MOTWALY33ANCNFSM6AAAAAAQV4IK7U>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
e5c6e6e
to
47c40fc
Compare
47c40fc
to
43df8db
Compare
@giurim I've rebased on origin/main and Marc reviewed it, you should be able to merge |
This should fix #88 by enabling discovery by UniqueIds.
For example, given a selector
[engine:scalatest]/[suite:tests.SomeTest]
, it should discoverSomeTest
.But given
[engine:scalatest]/[suite:tests.SomeTest]/[some method]
, it will still discoverSomeTest
and execute all its tests method.Supporting selecting only the provided method would require some refactoring in the
Discovery
class.