(*args, **kwargs)
| 45 | @wraps(fn) |
| 46 | @pytest.mark.parametrize("cloud", ["aws", "azure", "gcp"]) |
| 47 | def wrapper(*args, **kwargs): |
| 48 | return fn(*args, **kwargs) |
| 49 | |
| 50 | return wrapper |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected