File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ With that version the notation of relative markers in other modules is also
9
9
planned to change - instead of using the dot notation, the standard pytest
10
10
nodeid will be used.
11
11
12
+ ## [ Version 0.11.0] ( https://pypi.org/project/pytest-order/0.11.0/ ) (2021-04-11)
13
+ Adds support for multiple relative markers for the same test.
14
+
12
15
### New features
13
16
- added support for more than one relative marker for the same test
14
17
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.dev0 "
1
+ __version__ = "0.11.0 "
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def test_version_exists():
12
12
13
13
def test_version_valid ():
14
14
# check for PEP 440 conform version
15
- assert re .match (r"\d+(\.\d)*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)$" ,
15
+ assert re .match (r"\d+(\.\d+ )*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)? $" ,
16
16
pytest_order .__version__ )
17
17
18
18
You can’t perform that action at this time.
0 commit comments