We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent38af8d1 commite75d1c2Copy full SHA for e75d1c2
src/embed_tests/pytuple.cs
@@ -42,7 +42,15 @@ public void TestPyTupleEmpty()
42
}
43
44
45
+/// <remarks>
46
+/// FIXME: Unable to unload AppDomain, Unload thread timed out.
47
+/// Seen on Travis/AppVeyor on both PY2 and PY3. Causes Embedded_Tests
48
+/// to hang after they are finished for ~40 seconds until nunit3 forces
49
+/// a timeout on unloading tests. Doesn't fail the tests though but
50
+/// greatly slows down CI. nunit2 silently has this issue.
51
+/// </remarks>
52
[Test]
53
+[Ignore("GH#397: Travis/AppVeyor: Unable to unload AppDomain, Unload thread timed out")]
54
publicvoidTestPyTupleInvalidAppend()
55
{
56
using(Py.GIL())
@@ -93,6 +101,9 @@ public void TestPyTupleValidConvert()
93
101
94
102
95
103
104
105
+/// FIXME: Possible source of intermittent AppVeyor PY27: Unable to unload AppDomain.
106
96
107
97
108
publicvoidTestNewPyTupleFromPyTuple()
98
109