Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/asp.net-core/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Mono 单悬挂Travis上的dnx测试_Mono_Asp.net Core_Travis Ci_Xunit_Dnx - Fatal编程技术网

Mono 单悬挂Travis上的dnx测试

Mono 单悬挂Travis上的dnx测试,mono,asp.net-core,travis-ci,xunit,dnx,Mono,Asp.net Core,Travis Ci,Xunit,Dnx,我正在尝试运行我的ASP.NET 5.0(beta 8)测试,该测试在Travis CI上使用xunit,使用语言:CSharp作为构建环境 该项目构建良好,在安装dnvm之后,我使用dnx test运行测试 但是,无论测试通过还是失败,我都会在一段时间后收到以下消息: No output has been received in the last 10 minutes, this potentially indicates a stalled build or something wrong

我正在尝试运行我的ASP.NET 5.0(beta 8)测试,该测试在Travis CI上使用xunit,使用
语言:CSharp
作为构建环境

该项目构建良好,在安装
dnvm
之后,我使用
dnx test
运行测试

但是,无论测试通过还是失败,我都会在一段时间后收到以下消息:

No output has been received in the last 10 minutes, this potentially indicates a stalled build or something wrong with the build itself.
The build has been terminated
我认为这是因为当测试完成时,
dnx test
命令没有将控制权传递回Travis控制台。特拉维斯认为它仍在运行,但没有产生任何产出


我认为这与Mono中的这个bug有关:但那个线程说它在2015年5月被修复了,我正在运行Mono的最新版本(4.0.4)。

它可能是由一个已知的bug引起的。尝试在没有并行化的情况下运行测试,看看这是否有帮助:

dnx test -parallel none
您也应该能够在本地重现该问题