mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2025-05-20 13:50:23 +01:00
Compare commits
3 Commits
4d9dfa9d11
...
6f64e884d8
Author | SHA1 | Date | |
---|---|---|---|
6f64e884d8 | |||
90abc4f9ee | |||
f564f53c69 |
@ -171,7 +171,9 @@ 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
|
||||||
|
|
||||||
|
@ -1784,7 +1784,7 @@ class ReqClient:
|
|||||||
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
self.send("ToggleRecord")
|
return self.send("ToggleRecord")
|
||||||
|
|
||||||
def start_record(self):
|
def start_record(self):
|
||||||
"""
|
"""
|
||||||
|
@ -1 +1 @@
|
|||||||
version = "1.7.1"
|
version = "1.7.2"
|
||||||
|
@ -13,35 +13,8 @@ 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()
|
||||||
obsbasic_hotkey_list = [
|
assert resp.hotkeys
|
||||||
"OBSBasic.SelectScene",
|
assert any(x.startswith("OBSBasic.") for x in resp.hotkeys)
|
||||||
"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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user