We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a59203 commit 1ffbe84Copy full SHA for 1ffbe84
conftest.py
@@ -73,6 +73,12 @@ def monkeypatch_plugin_test_packages(monkeypatch: pytest.MonkeyPatch) -> None:
73
monkeypatch.syspath_prepend(os.path.abspath(os.path.relpath(path)))
74
75
76
+@pytest.fixture(scope="function")
77
+def session_params(session_params: t.Dict[str, t.Any]) -> t.Dict[str, t.Any]:
78
+ session_params.update({"x": 800, "y": 600})
79
+ return session_params
80
+
81
82
@pytest.fixture(scope="function")
83
def socket_name(request: pytest.FixtureRequest) -> str:
84
return "tmuxp_test%s" % next(namer)
0 commit comments