In Azure DevOps Pipelines, how can I examine the d

2019-08-26 09:52发布

I'm trying to create a task to run unit tests after a build, but I can't figure out what to enter for the "Test files" field. It would be nice if I could get a directory listing of the agent so I can see where the test DLL is. Is there any way to do this?

Thanks! :)

1条回答
SAY GOODBYE
2楼-- · 2019-08-26 10:21

you cant really do that native, there was an third party extension for that, but tbh its easier to just insert a step that does:

ls -Rla

and examine the output

查看更多
登录 后发表回答