1
0
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:
Josh Curl
2016-06-02 09:01:00 -07:00
parent 97344cc535
commit 55d629b980
5 changed files with 26 additions and 115 deletions

View 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")