如何指定YAML中排除的路径
我对YAML相对较新,并且有一些Azure管道可以维护。
下面的变量用于在Azure DevOps中运行单元测试,但现在添加了一个名为api.tests.restsharp
的测试项目,我希望将
unitTestsGlob: $(Build.SourcesDirectory)\**\*Tests\*.csproj
其排除在运行之外特定的项目名称?
I'm relatively new to yaml and have some azure pipelines to maintain.
The variable below is used to run unit tests in azure DevOps but there has now been added a test project named Api.Tests.RestSharp
which I wish to be excluded from being run
unitTestsGlob: $(Build.SourcesDirectory)\**\*Tests\*.csproj
How can I update this to exclude a specific project name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的解决方案:
My solution: