@@ -5,12 +5,12 @@ _pytest-order_ - a pytest plugin to order test execution
5
5
6
6
` pytest-order ` is a pytest plugin that allows you to customize the order in which
7
7
your tests are run. It uses the marker ` order ` that defines when a specific
8
- test shall be run relative to the other tests.
8
+ test shall run, either by using an ordinal number, or by specifying the
9
+ relationship to other tests.
9
10
10
11
` pytest-order ` is a fork of
11
12
[ pytest-ordering] ( https://github.com/ftobia/pytest-ordering ) that provides
12
- some additional features - see [ below] ( #comparison-with-pytest_ordering ) for
13
- details.
13
+ additional features like ordering relative to other tests.
14
14
15
15
` pytest-order ` works with Python 3.6 - 3.10, with pytest
16
16
versions >= 3.7.0, and runs on Linux, macOS and Windows.
@@ -103,20 +103,18 @@ History
103
103
-------
104
104
This is a fork of [ pytest-ordering] ( https://github.com/ftobia/pytest-ordering ) .
105
105
That project is not maintained anymore, and there are several helpful PRs
106
- that are now integrated into ` pytest-order ` . The idea and most of the code
107
- has been created by Frank Tobia, the author of that plugin, and
106
+ that are now integrated into ` pytest-order ` . The idea and most of the
107
+ initial code has been created by Frank Tobia, the author of that plugin, and
108
108
[ contributors] ( https://github.com/pytest-dev/pytest-order/blob/main/AUTHORS ) .
109
109
110
- Comparison with pytest_ordering
111
- -------------------------------
112
110
While derived from ` pytest_ordering ` , ` pytest-order ` is ** not** compatible
113
111
with ` pytest-ordering ` due to the changed marker name (` order ` instead of
114
- ` run ` ). Additional markers are integrated into the ` order ` marker (for a
115
- rationale see also
112
+ ` run ` ). Additional markers defined ` pytest_ordering ` are all integrated
113
+ into the ` order ` marker (for a rationale see also
116
114
[ this issue] ( https://github.com/ftobia/pytest-ordering/issues/38 ) ).
117
115
118
116
Ordering relative to other tests and all the configuration options are not
119
117
available in the released version of ` pytest-ordering ` .
120
- However, most of these features are derived from
118
+ However, most of these features are derived from or inspired by
121
119
[ issues] ( https://github.com/pytest-dev/pytest-order/blob/main/old_issues.md )
122
- and pull requests already existing in ` pytest-ordering ` .
120
+ and pull requests already existing in ` pytest-ordering ` .
0 commit comments