Skip to content
Snippets Groups Projects
Verified Commit b0828c9b authored by Karel Koci's avatar Karel Koci :metal:
Browse files

tests/network/test_lan: wait for network before continuing

This should prevent hopefully failures when network is not yet up in the
client container.
parent 8cc46caa
No related branches found
No related tags found
1 merge request!8Draft: Feature/target parsing
"""Test LAN access of Internet and software on LAN side.
"""
import time
import pytest
import nsfarm.lxd
import nsfarm
from . import common
# pylint: disable=no-self-use
......@@ -15,4 +14,6 @@ class TestInternet(common.InternetTests):
def client(self, basic_isp, lan1_client):
"""With basic router config and client is client container.
"""
yield nsfarm.cli.Shell(lan1_client.pexpect())
shell = nsfarm.cli.Shell(lan1_client.pexpect())
shell.run("wait4network")
yield shell
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment