Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e75d1c2

Browse files
committed
Skip PyTuple test with AppDomain issue
This skip removes the issue from all PY3 on Travis/AppVeyor. PY27 still has issue randomly on both Travis/AppVeyor x86, x64,.
1 parent 38af8d1 commit e75d1c2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/embed_tests/pytuple.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,15 @@ public void TestPyTupleEmpty()
4242
}
4343
}
4444

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>
4552
[Test]
53+
[Ignore("GH#397: Travis/AppVeyor: Unable to unload AppDomain, Unload thread timed out")]
4654
public void TestPyTupleInvalidAppend()
4755
{
4856
using (Py.GIL())
@@ -93,6 +101,9 @@ public void TestPyTupleValidConvert()
93101
}
94102
}
95103

104+
/// <remarks>
105+
/// FIXME: Possible source of intermittent AppVeyor PY27: Unable to unload AppDomain.
106+
/// </remarks>
96107
[Test]
97108
public void TestNewPyTupleFromPyTuple()
98109
{

0 commit comments

Comments
 (0)