Frank Tobia
Frank Tobia
Are there use cases for an ordering-specific pytest plugin that aren't fulfilled by pytest-dependency? If not, should we deprecate pytest-ordering in favor of pytest-dependency? Comments and discussion welcome.
Something like: ``` @pytest.mark.run_before(test_name='test_foo') def test_bar(): assert True ``` I welcome ideas for different / better APIs.
There is a behavior I intended which I have not tested (see also: https://github.com/mattias-lundell/pytest-ordering/commit/a29a07ffa1e30d3ab5fe5be0356224994169fa89#commitcomment-9290806). The behavior is that you need not specify all the ordinals from the beginning or end...
@Bengreen I added some tests whose behavior I think should work. Thoughts?