1

我正在使用新的 Visual Studio Team Services Online 运行简单构建,包括在自定义 Windows Server 2012 R2 VM 上执行以下任务:

  1. nuget 安装程序
  2. npm
  3. 吞咽
  4. Visual Studio 构建
  5. Visual Studio 测试
  6. Azure Web 应用部署
  7. 索引来源和发布符号
  8. 发布构建工件

任务 #1 到 #4 运行成功,任务 #5 (vstest) 抛出以下错误:

Starting task: Test Assemblies **\$(BuildConfiguration)\*test*.dll;-:**\obj\**
Executing the powershell script: C:\a\tasks\VSTest\1.0.34\VSTest.ps1
Entering script VSTest.ps1
vsTestVersion = 14.0
testAssembly = **\release\*test*.dll;-:**\obj\**
testFiltercriteria = 
runSettingsFile = C:\a\_work\1\s
codeCoverageEnabled = false
pathtoCustomTestAdapters = 
overrideTestrunParameters = 
otherConsoleOptions = 
testRunTitle = 
platform = any cpu
configuration = release
publishRunAttachments = true
##[error]The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
##[warning]No test assemblies found matching the pattern: '**\release\*test*.dll;-:**\obj\**'.
Finishing task: VSTest
4

1 回答 1

2

这篇博文解释了这个问题(npm 下载创建的路径太长)以及如何解决这个问题。

于 2016-04-03T20:36:19.260 回答