bloomberg / pytest-memray

pytest plugin for easy integration of memray memory profiler
https://pytest-memray.readthedocs.io/en/latest/
Apache License 2.0
335 stars 24 forks source link

Do not return our result from the pytest_pyfunc_call wrapper #61

Closed pablogsal closed 1 year ago

pablogsal commented 1 year ago

Pytest shows a warning if we return something from the pytest_pyfunc_call wrapper as it interprets this as the test returning a value. We are incorrecly returning the pytest test result from the wrapper instead of whatever the test returns.

Closes: #60