Compare commits

..

No commits in common. "6f64e884d8300bf9468a483e80c982666314505d" and "4d9dfa9d11181a24ff3347a323c42a49a5af208b" have entirely different histories.

4 changed files with 32 additions and 7 deletions

View File

@ -171,9 +171,7 @@ logging.basicConfig(level=logging.DEBUG)
Install [hatch][hatch-install] and then: Install [hatch][hatch-install] and then:
``` `hatch test`
hatch test
```
### Official Documentation ### Official Documentation

View File

@ -1784,7 +1784,7 @@ class ReqClient:
""" """
return self.send("ToggleRecord") self.send("ToggleRecord")
def start_record(self): def start_record(self):
""" """

View File

@ -1 +1 @@
version = "1.7.2" version = "1.7.1"

View File

@ -13,8 +13,35 @@ class TestRequests:
def test_get_hot_key_list(self): def test_get_hot_key_list(self):
resp = req_cl.get_hot_key_list() resp = req_cl.get_hot_key_list()
assert resp.hotkeys obsbasic_hotkey_list = [
assert any(x.startswith("OBSBasic.") for x in resp.hotkeys) "OBSBasic.SelectScene",
"OBSBasic.QuickTransition.1",
"OBSBasic.QuickTransition.2",
"OBSBasic.QuickTransition.3",
"OBSBasic.StartStreaming",
"OBSBasic.StopStreaming",
"OBSBasic.ForceStopStreaming",
"OBSBasic.StartRecording",
"OBSBasic.StopRecording",
"OBSBasic.PauseRecording",
"OBSBasic.UnpauseRecording",
"OBSBasic.SplitFile",
"OBSBasic.StartReplayBuffer",
"OBSBasic.StopReplayBuffer",
"OBSBasic.StartVirtualCam",
"OBSBasic.StopVirtualCam",
"OBSBasic.EnablePreview",
"OBSBasic.DisablePreview",
"OBSBasic.EnablePreviewProgram",
"OBSBasic.DisablePreviewProgram",
"OBSBasic.ShowContextBar",
"OBSBasic.HideContextBar",
"OBSBasic.Transition",
"OBSBasic.ResetStats",
"OBSBasic.Screenshot",
"OBSBasic.SelectedSourceScreenshot",
]
assert all(x in resp.hotkeys for x in obsbasic_hotkey_list)
@pytest.mark.parametrize( @pytest.mark.parametrize(
"name,data", "name,data",