Skip to content

Commit 9d442e8

Browse files
author
Sylvain MARIE
committed
1.9.1 - Fixed #48
1 parent a91a5c7 commit 9d442e8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 1.9.1 - Bugfix
4+
5+
Fixed [#48](https://github.com/smarie/python-pytest-cases/issues/48).
6+
37
### 1.9.0 - New `--with-reorder` commandline option
48

59
New commandline option '--with-reorder' to change the reordering startegy currently in application. Fixes [#45](https://github.com/smarie/python-pytest-cases/issues/45).

pytest_cases/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def getfixtureclosure(fm, fixturenames, parentnode, ignore_args=()):
471471
# new argument "ignore_args" in 4.6+
472472
kwargs['ignore_args'] = ignore_args
473473

474-
if LooseVersion(pytest.__version__) >= LooseVersion('3.10.0'):
474+
if LooseVersion(pytest.__version__) >= LooseVersion('3.7.0'):
475475
# three outputs
476476
initial_names, ref_fixturenames, ref_arg2fixturedefs = \
477477
fm.__class__.getfixtureclosure(fm, fixturenames, parentnode, **kwargs)

0 commit comments

Comments
 (0)