Skip to content

Commit d3cf3d2

Browse files
committed
Release 0.11.0
- adds support for multiple relative markers for the same test
1 parent 1b4aaea commit d3cf3d2

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ With that version the notation of relative markers in other modules is also
99
planned to change - instead of using the dot notation, the standard pytest
1010
nodeid will be used.
1111

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+
1215
### New features
1316
- added support for more than one relative marker for the same test
1417

pytest_order/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.dev0"
1+
__version__ = "0.11.0"

tests/test_misc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_version_exists():
1212

1313
def test_version_valid():
1414
# 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)?$",
1616
pytest_order.__version__)
1717

1818

0 commit comments

Comments
 (0)