(self, tmp_path: Path, monkeypatch: MonkeyPatch)
| 1996 | assert inicfg == {} |
| 1997 | |
| 1998 | def test_nothing(self, tmp_path: Path, monkeypatch: MonkeyPatch) -> None: |
| 1999 | monkeypatch.chdir(tmp_path) |
| 2000 | rootpath, inipath, inicfg, _ = determine_setup( |
| 2001 | inifile=None, |
| 2002 | override_ini=None, |
| 2003 | args=[str(tmp_path)], |
| 2004 | rootdir_cmd_arg=None, |
| 2005 | invocation_dir=Path.cwd(), |
| 2006 | ) |
| 2007 | assert rootpath == tmp_path |
| 2008 | assert inipath is None |
| 2009 | assert inicfg == {} |
| 2010 | |
| 2011 | @pytest.mark.parametrize( |
| 2012 | "name, contents", |
nothing calls this directly
no test coverage detected