Rolf Krahl

Results 27 comments of Rolf Krahl

Yes, the issue with "SKIP" versus "SKIPPED" is a change in pytest 4.2.0 that causes test_03_skipmsgs.py to fail. I already did notice that, but I didn't got around to fix...

Btw, I didn't had a detailed look into what you are trying to do in `DependencyManager.addResult()` and I'm afraid, I won't have the time to do so right now. But...

Interesting idea. I have to think about that. As suggested, I'm somewhat busy right now, so I can't make promises when I will check that in detail.

Apologies for not replying earlier. What you ask for is not supported out of the box in pytest-dependency. But you can implement it using a small helper function. I provided...

I'm skeptical. Until now, pytest-dependency is neat and small because it has a very clear scope and that is about skipping tests. In principle, I'd prefer to keep the scope...

This is not supported out of the box. But you can implement it using a small helper function: ```python import pytest from pytest_dependency import depends def depends_or(request, other, scope='module'): """Add...

_ping_ The PR has been submitted two weeks ago without any reaction so far. Shall I submit an Issue for it to get noticed?

Hi Kieran! Thank you for your comment! I can reproduce the problem that you describe. However, I'm not sure whether it is related with my PR. If I do the...

@kieranjol, it turns out that the issue you discovered is indeed unrelated to this PR, see Bug #75.

Ping! Could you have a look at the PR and comment on which variant you would prefer?