bpo-40280: Skip more tests on Emscripten (GH-31947)

- lchmod, lchown are not fully implemented
- skip umask tests
- cannot fstat unlinked or renamed files yet
- ignore musl libc issues that affect Emscripten
This commit is contained in:
Christian Heimes 2022-03-17 13:09:57 +02:00 committed by GitHub
parent c2e3c06139
commit ef1327e3b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 63 additions and 8 deletions

View file

@ -2208,6 +2208,9 @@ class CoroutineTest(unittest.TestCase):
gen.cr_frame.clear()
@unittest.skipIf(
support.is_emscripten, "asyncio does not work under Emscripten yet."
)
class CoroAsyncIOCompatTest(unittest.TestCase):
def test_asyncio_1(self):