Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
- adds support for multiple relative markers for the same test
  • Loading branch information
mrbean-bremen committed Apr 11, 2021
1 parent 1b4aaea commit d3cf3d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ With that version the notation of relative markers in other modules is also
planned to change - instead of using the dot notation, the standard pytest
nodeid will be used.

## [Version 0.11.0](https://pypi.org/project/pytest-order/0.11.0/) (2021-04-11)
Adds support for multiple relative markers for the same test.

### New features
- added support for more than one relative marker for the same test

Expand Down
2 changes: 1 addition & 1 deletion pytest_order/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.dev0"
__version__ = "0.11.0"
2 changes: 1 addition & 1 deletion tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_version_exists():

def test_version_valid():
# check for PEP 440 conform version
assert re.match(r"\d+(\.\d)*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)$",
assert re.match(r"\d+(\.\d+)*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)?$",
pytest_order.__version__)


Expand Down

0 comments on commit d3cf3d2

Please sign in to comment.