我正在努力让NUnit测试运行预部署到Azure,因此我构建了一个运行测试的应用程序:
https://github.com/EdLichtman/HelloAzureCI
当我在自己的PC上运行时,一切正常,3个单元测试通过,一个失败(我预计会发生,我正在测试环境AppSettings)
然而,当我部署到Azure时,我收到错误:无效设置'RunConfiguration'。意外的XmlElement:'TestAdapterPaths'。
我甚至自动在Powershell中创建了.runsettings文件,以确保将Direct路径(D:\ home \ etc ...)初始化为TestAdaptersPaths,以便我可以测试它是否真的不能找到我指定的testAdaptersPaths路径,但它仍然收到错误。
我正在使用Microsoft的.runsettings指南中的确切拼写和树结构,为什么它不起作用?
答案 0 :(得分:0)
看起来你错过了" s "。尝试使用TestAdaptersPaths
而不是TestAdapterPaths
。