Ashley C Straw

Results 18 comments of Ashley C Straw

I don't know if I should create a new issue for this, but it seems like there's still a bug when running scripts with the same filename -- kcov doesn't...

Your hunch was correct I believe. As it turns out, I don't think any change is necessary from kcov to solve my particular problem (which I didn't explain clearly I...

Thanks for the report & PR! I'll get around to reviewing it shortly.

That was my original goal when I was working on this, but it's not really feasible unless I use what pytest itself does with assertions. They re-write the modules, breaking...

Updated location: https://github.com/pytest-dev/pytest/blob/3.8.2/src/_pytest/assertion/rewrite.py (with a tagged release, rather than off the master, which could be subject to the same problem in the future)

I think this would likely be very closely related to #4 , at least in regards to location/type of work required. I think it would need to be an AST...

I think that'd be an acceptable fix. The bug would likely still exist for unittest-based projects, but I was never very happy with the change required to make unittest-projects work....

Got a working counter example? There's a [test](https://github.com/astraw38/pytest-assume/blob/master/tests/test_expect.py#L191) for this that is passing, so if you got one that will trigger a failure, that'd help out. Or at least some...

Quick analysis: strict-xfail checking is done in ``pytest_pyfunc_call``. That was the hook we originally were using to do the core logic behind assumption validation; but that was dropped in favor...

Hi @ptrivedi2610 , it's doable, but I really don't have the time or bandwidth to be able to implement it right now. If you wanted to give a shot at...