Closed
Description
The bank account problem is meant to be "hard" with the difficulty coming from the need to lock the account during threading.
I created a solution that passed all of the other tests and completely ignored the threading part (there was no code at all for that). On my local PC it passed all tests except the threading one, exactly as expected.
Except when I copy/pasted it to exercism and ran the tests there, all of the tests passed and I could submit my solution.
(Edit: Also the Intro blurb for Bank Account says the solution needs to handle "threading/processes" depending on what the language is. Given Python supports both of these but the code is only using Threading, this should probably be changed to just threading).