Try skipping caching on macos#2314
Conversation
dd01406 to
5058a51
Compare
| target/release/rustpython -m test -v -x | ||
| test_argparse test_json test_bytes test_bytearray test_long test_unicode test_array | ||
| test_asyncgen test_list test_complex test_json test_set test_dis test_calendar | ||
| test_importlib |
There was a problem hiding this comment.
importlib depends on filesystem. I think this is better to be not skipped.
There was a problem hiding this comment.
Should I unskip it for windows as well? I thought the same, but it seemed like it took a while and I figured that if windows skipped it then it was probably fine
There was a problem hiding this comment.
I think so if possible. The winodws tests with -x were failing at the time I added it.
acc8c43 to
9a8a10d
Compare
9a8a10d to
62241b6
Compare
e4b9328 to
34bd00a
Compare
34bd00a to
e4f446e
Compare
|
@youknowone I wasn't able to get windows test_importlib working; it completely succeeds on my machine, but on ci there's something weird with rmtree failing because it wasn't able to remove all the files in a directory, I think? Which might be because there's still an open handle to one of the files for some reason, and windows can't unlink a file until the handle's closed. Also, it's always only 1 of the files that doesn't get removed, for some reason. e.g.: |
No description provided.