-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
Test ordering does not seem to work anymore.
As an example, this is straight from the docs:
import pytest
@pytest.mark.second_to_last
def test_three():
assert True
@pytest.mark.last
def test_four():
assert True
@pytest.mark.second
def test_two():
assert True
@pytest.mark.first
def test_one():
assert TrueBut results in the following execution order:
...
order_test2.py::test_one PASSED
order_test2.py::test_two PASSED
order_test2.py::test_four PASSED
order_test2.py::test_three PASSED
...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels