-
Notifications
You must be signed in to change notification settings - Fork 1k
Pass in correct explicitlySpecified and selectors when creating TestDefinitions #5609
Copy link
Copy link
Closed
Closed
Copy link
Milestone
Description
Simply something that has never been implemented it seems. For example Scalatest relies on these two fields to implement the tasks run logic so it's a shame they are currently hardcoded.
sbt/main-actions/src/main/scala/sbt/Tests.scala
Lines 570 to 575 in 62c6cad
| // TODO: To pass in correct explicitlySpecified and selectors | |
| val tests = | |
| for { | |
| (df, di) <- discovered | |
| fingerprint <- toFingerprints(di) | |
| } yield new TestDefinition(df.name, fingerprint, false, Array(new SuiteSelector: Selector)) |
This is the first time I take a look at the sbt code but if someone can provide me with some guidance I would be happy to contribute.
Reactions are currently unavailable