我的模块旁边有一些文件,我需要在我的类路径上进行测试。
列出所有可能性(mill resolve tests._
(我认为扩展resources
是要走的路。
我尝试了很多 - 这是我的最后一次尝试:
object test extends Tests {
override def resources =
new Sources({
super.resources.self.map(_ :+ (millSourcePath / up / 'data / 'global / 'bpmn))
},
super.resources.ctx
)
...
}
- 覆盖
resources
是要走的路吗? - 如何正确完成?
>resources
是此处定义的"源任务"。因此,为了向资源路径添加一些东西,您可以执行
override def resources = T.sources {
super.resources() :+ PathRef(millSourcePath / up / 'data / 'global / 'bpm)
}