i'm working on a script test with testinfra plugin to check and validate any servers deployment. testinfra plugin has a fixture "host" which is used to connect to the server. we can use it with the argument "pytest --hosts=". The idea here i need to create some others fixture to get data from my configuration management. I would like to re-use the argument "hosts" from testinfra plugin with my external function. Like that, i should be able to call my function into a fixture and use this fixture with pytest.mark.parametrize
im not a developper and its my first time using pytest/testinfra so i dont even know if its possible.