pytest-describe
pytest-describe copied to clipboard
Describe-style plugin for the pytest framework
Hello all! I'm testing out the library right now and I'm noticing that if I create describe scenarios in pycharm there doesn't seem to be a way to run single...
Hi, I'm being using your awesome `pytest-describe-it` lib from a while and I love it because it allows me to have a multi-dimensional test file like in Jest 😍. The...
I mentioned in #38 that I'd send a WIP PR if I managed to find some time, but of course I forgot. I had some time to do some hacking...
This has been requested and rejected before (#9, #11, #34) but I've done some investigation and I'd like to share my findings, and reopen the discussion. # Problem setting Consider...
VSCode seems to have an issue with describe blocks, it doesn't know what to do with them and so won't add them to the list of tests (it uses pytest's...
Hi, during Python version upgrade I've found a case where `pytest-describe` crashes when `yarl.URL` object is initialized under `describe_` block. **test.py** ```python import yarl def describe_case(): url = yarl.URL("url") def...
Currently I am unaware of any intended/documented functionality enabling the ability to call other pre-existing tests to in order to reuse existing test behavior and/or to validate chained functionality. For...
To achieve a sintax similar to ruby's RSpec, it seems to me that the use of Context Managers could be an option: ```python with describe('a thing'): @pytest.fixture def foo(): return...