Closed vanhanit closed 4 days ago
This could also be a candidate for a back-port to the 0.9 version as well.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 88.86%. Comparing base (
1e34855
) to head (0fadd9f
). Report is 1 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Added verification to the Robot Framework tests to verify that the file descriptors are closed for both use cases.
Added verification to the Robot Framework tests to verify that the file descriptors are closed for both use cases.
there was already a unit test for check file closing
Added verification to the Robot Framework tests to verify that the file descriptors are closed for both use cases.
there was already a unit test for check file closing
Well, I did not dig too deep to find that. The Robot test ensures that both a dictionary and a list is tested. It does not test having files in the data section. Maybe the unit test covers this?
I rebased on master. I don't think that my changes is what is causing the test to fail.
I rebased on master. I don't think that my changes is what is causing the test to fail.
no it's not your commit, there are still some tests that use a web version of httpbin, sometimes they throttle the requests... they should be changed but there are tests also for https certificates so not easy to implement locally
I rebased on master. I don't think that my changes is what is causing the test to fail.
no it's not your commit, there are still some tests that use a web version of httpbin, sometimes they throttle the requests... they should be changed but there are tests also for https certificates so not easy to implement locally
Yeah, it is the same test that also fails locally for me.
@lucagiove Was there anything I still needed to do with this? How do we rerun the builds?
No I would have added also the unit test but mandatory. I'll try to have the pipeline running.
But didn't you say that there already are a unit test for the closing of file descriptors? Or was there some other unit test that you wanted to run? Either way, there are a couple of Robot Framework tests that cover the functionality.
No I would have added also the unit test but mandatory. I'll try to have the pipeline running.
But didn't you say that there already are a unit test for the closing of file descriptors? Or was there some other unit test that you wanted to run? Either way, there are a couple of Robot Framework tests that cover the functionality.
Yep but not with the specific input of a list.
Uploading a list of files with the same key is supported by the Requests library. This allows the receiving server to accept a list of files for the same key, i.e. accepting any number of files.
Issue: #401