**problem** there is WET code in `test_pvsystem.py` since I copied and pasted the same tests, and just changed the method **solution** according to [this comment](https://github.com/pvlib/pvlib-python/pull/409#pullrequestreview-133404816) here's a nice snippet: ```python @requires_scipy @pytest.mark.parametrize('method,atol', [('brentq', 1e-11), ('newton', 1e-8)]) def test_v_from_i_methods(fixture_v_from_i, method, atol): # remove atol spec and set method=method ``` **Additional context** see #409