Daniel Watkins

Results 41 comments of Daniel Watkins

And, actually, on further reflection, even without fixtures, it's not uncommon to do something like: ```py @pytest.mark.parametrize("path", pathlib.Path("./json/").glob("*.json")) def test_json_files(path): assert json.load(open(path))["key"] = "value" ``` So the set of test...