Open
Description
Sometimes I want to run all FutureResult
(or tests for any other type) related tests from returns
.
It is a very complex task right now.
I need to:
- manually find all
FutureResult
inside tests - manually copy all the paths from the query
- provide long list of arguments to
pytest
All I want instead is:
- case: test_future_result
marks:
- future_result
main: ...
And then pytest -m future_result
to run this (and all other similarly marked tests).