We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_python_threads
1 parent 23841bc commit a47acccCopy full SHA for a47accc
src/flint/test/test_all.py
@@ -3,6 +3,7 @@
3
import pickle
4
import platform
5
import random
6
+import sys
7
8
from flint.utils.flint_exceptions import DomainError, IncompatibleContextError
9
@@ -4775,6 +4776,7 @@ def _test_fq_default_poly():
4775
4776
assert raises(lambda: f.pow_trunc(-1, 5), ValueError)
4777
4778
4779
+@pytest.mark.skipif((sys.platform == "emscripten"), reason="can't start new thread in Pyodide/WASM")
4780
def test_python_threads():
4781
#
4782
# https://github.com/flintlib/python-flint/issues/224
0 commit comments