Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ With pytest-ordering, you can change the default ordering as follows:

import pytest

@pytest.mark.order2
@pytest.mark.run(order=2)
def test_foo():
assert True

@pytest.mark.order1
@pytest.mark.run(order=1)
def test_bar():
assert True

Expand Down