mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2026-04-18 13:03:31 +00:00
add sync kwarg, reformat tests.
tests reformatted, add sync to tests. add sync kwarg to vbancmd. Set for apply_profile.
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
import vbancmd
|
||||
from vbancmd import kinds
|
||||
from vbancmd.channel import Modes
|
||||
import socket
|
||||
from threading import Thread
|
||||
|
||||
_kind = 'potato'
|
||||
_kind = "potato"
|
||||
opts = {
|
||||
'ip': 'ws.local',
|
||||
'streamname': 'testing',
|
||||
'port': 6990,
|
||||
'bps': 0,
|
||||
"ip": "ws.local",
|
||||
"streamname": "testing",
|
||||
"port": 6990,
|
||||
"bps": 0,
|
||||
"sync": True,
|
||||
}
|
||||
|
||||
vbanrs = {kind.id: vbancmd.connect(_kind, **opts) for kind in kinds.all}
|
||||
tests = vbanrs[_kind]
|
||||
|
||||
|
||||
def setup_package():
|
||||
tests.login()
|
||||
|
||||
|
||||
def teardown_package():
|
||||
tests.logout()
|
||||
|
||||
Reference in New Issue
Block a user