Add support for pytest fixtures from local pytest plugins.

This commit is contained in:
Martin Vielsmaier
2024-01-23 20:54:21 +01:00
parent 11280ef502
commit 7d77f61040
4 changed files with 29 additions and 0 deletions
+6
View File
@@ -27,3 +27,9 @@ def capsysbinary(capsysbinary):
#? ['close']
capsysbinary.clos
return capsysbinary
# used when fixtures are defined in multiple files
pytest_plugins = [
"completion.fixture_module",
]