You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The override logic in tox-dev#3088 didn't work quite correctly, because I'd
missed that KeyError would be raised early in the `load()` method,
before the appending logic.
Handle this, and test!
Fixes: tox-dev#3100
Issue
In my work in #3088, I got appending working, but didn't correctly handle the case where there is no existing configuration parameter to append to.
It wasn't obvious that a
KeyError
gets raised early inload()
in this case, and bypasses my appending logic.This breaks my entire use-case for #3087. Whoops!
Minimal example
The text was updated successfully, but these errors were encountered: