File: test_module1.py

package info (click to toggle)
pytest-order 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 600 kB
  • sloc: python: 3,483; makefile: 159; sh: 13
file content (15 lines) | stat: -rw-r--r-- 262 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""One of the test files showing the use of the --order-scope option.
See https://pytest-order.readthedocs.io/en/stable/configuration.html#order-scope
"""

import pytest


@pytest.mark.order(2)
def test2():
    pass


@pytest.mark.order(1)
def test1():
    pass