alfredodeza / pytest.vim

Runs your UnitTests with py.test displaying red/green bars and errors
274 stars 40 forks source link

`looponfail` continues to run tests after everything passes #63

Closed OddBloke closed 6 years ago

OddBloke commented 6 years ago

Observed on the latest HEAD.

OddBloke commented 6 years ago

I can reproduce this with:

class TestThing(object):

    def test_thing(self):
        assert False

and then toggling False to True.

alfredodeza commented 6 years ago

Should be fixed with 1201491d4978ffef09126eacee011393b83ad284

Can you check and confirm ? Thanks!

OddBloke commented 6 years ago

LGTM, thanks again for the speedy response!