suds-community / suds

Suds is a lightweight SOAP python client for consuming Web Services. A community fork of the jurko fork.
https://suds.readthedocs.io/
GNU Lesser General Public License v3.0
173 stars 56 forks source link

Fix exception when running http test #22

Closed swt2c closed 5 years ago

swt2c commented 5 years ago

Fix the below exception by adding a close() method to the MockFP: Exception ignored in: <function _TemporaryFileCloser.del at 0x7f03bd5369d8> Traceback (most recent call last): File "/usr/lib64/python3.7/tempfile.py", line 448, in del self.close() File "/usr/lib64/python3.7/tempfile.py", line 441, in close self.file.close() AttributeError: 'MockFP' object has no attribute 'close'

swt2c commented 5 years ago

Looks like all CI is failing due to newer pytest. My other PR should fix that.

swt2c commented 5 years ago

Rebased. I'll do another PR for updating the CI, I would like to add 3.8-dev too, and I have another fix to submit for 3.8.

phillbaker commented 5 years ago

Thanks!