We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let's assume you have 2 unix devices. You take iperf command
svr = unix1.get_cmd("iperf", cmd_params={'options': '-s -i 1') run_client = unix2.get_cmd("iperf", cmd_params={'options': '-c {} -i 1 -t 10'.format(server_ip))
then you need to add sleep to let server start:
svr.start(timeout=15) time.sleep(1) client_report = run_client(timeout=15)
would be great to let it express as:
svr.start(timeout=15) svr.await_started(timeout=1) client_report = run_client(timeout=15)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
let's assume you have 2 unix devices. You take iperf command
then you need to add sleep to let server start:
would be great to let it express as:
The text was updated successfully, but these errors were encountered: