mirror of
https://github.com/rancher/os.git
synced 2025-09-15 22:49:08 +00:00
Remove unneeded service processing code
This commit is contained in:
18
tests/integration/rostest/test_19_lenient_service_parsing.py
Normal file
18
tests/integration/rostest/test_19_lenient_service_parsing.py
Normal file
@@ -0,0 +1,18 @@
|
||||
import time
|
||||
import pytest
|
||||
import rostest.util as u
|
||||
from rostest.util import SSH
|
||||
|
||||
cloud_config_path = './tests/integration/assets/test_19/cloud-config.yml'
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def qemu(request):
|
||||
q = u.run_qemu(request, run_args=['--cloud-config', cloud_config_path])
|
||||
u.flush_out(q.stdout)
|
||||
return q
|
||||
|
||||
|
||||
def test_lenient_service_parsing(qemu):
|
||||
time.sleep(5)
|
||||
SSH(qemu).check_call("sudo system-docker ps -a | grep test-parsing")
|
Reference in New Issue
Block a user