()
| 41 | |
| 42 | @pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads") |
| 43 | def test_implicit_conversion_no_gil(): |
| 44 | a = Thread(m.test_no_gil) |
| 45 | b = Thread(m.test_no_gil) |
| 46 | c = Thread(m.test_no_gil) |
| 47 | for x in [a, b, c]: |
| 48 | x.start() |
| 49 | for x in [c, b, a]: |
| 50 | x.join() |
| 51 | |
| 52 | |
| 53 | @pytest.mark.skipif(sys.platform.startswith("emscripten"), reason="Requires threads") |