We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdcb0f0 commit 46f3c5fCopy full SHA for 46f3c5f
pytest_cases/main_fixtures.py
@@ -787,6 +787,9 @@ def wrapped_test_func(*args, **kwargs):
787
# not needed because the __dict__ is automatically copied when we use @wraps
788
# move_all_pytest_marks(test_func, wrapped_test_func)
789
790
+ # With this hack we will be ordered correctly by pytest https://github.com/pytest-dev/pytest/issues/4429
791
+ wrapped_test_func.place_as = test_func
792
+
793
# return the new test function
794
return wrapped_test_func
795
0 commit comments