Replies: 1 comment 14 replies
-
That's really weird. I'm not aware of any issues with |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to look into the test
test_upload_duplicate_file
that fails with tarpaulin. Turns out this test also fails withnextest
.It is the only test that creates an upload dir
fs::create_dir(test_upload_dir)?;
When I tried to use the current dir (as all other tests do), this test stalls and runs for about 90 seconds - and passes (in nextest, I haven't tried tarpaulin).
It hangs for 40s at both instances of
test::call_service(....)
.With the upload dir set to something, it doesn't stall but the test fails. I am very puzzled by this. @orhun are you aware of any side effects of
actix_web::test::test_utils
?Beta Was this translation helpful? Give feedback.
All reactions