-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove reset_buffer() from reset method #501
Conversation
So there are at least two tests (test_sac_with_il and test_collector_nepisode) that break because they assume that |
I can do for that
Indeed, but they all call collector.reset(reset_buffer: bool = True) and in init: def __init__(...):
...
self.reset(reset_buffer=False) |
Codecov Report
@@ Coverage Diff @@
## master #501 +/- ##
=======================================
Coverage 94.11% 94.11%
=======================================
Files 61 61
Lines 4058 4059 +1
=======================================
+ Hits 3819 3820 +1
Misses 239 239
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
make format
(required)make commit-checks
(required)This pull request:
self.reset_buffer()
from thereset()
methodThis was discussed in #500
Best, Markus