diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-09 20:08:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 20:08:29 +0000 |
commit | 716f70b5c58c416b31427252067e5d2222240afc (patch) | |
tree | 94b8d7ccaef08f30e11b5577c117c51dbc8b2f59 /test/apiv2/rest_api | |
parent | 110a1d8f25c87739afe790ac2bc461937f17222a (diff) | |
parent | 2d50ec69965af3e5e15922094294fd451d468c46 (diff) | |
download | podman-716f70b5c58c416b31427252067e5d2222240afc.tar.gz podman-716f70b5c58c416b31427252067e5d2222240afc.tar.bz2 podman-716f70b5c58c416b31427252067e5d2222240afc.zip |
Merge pull request #8236 from jwhonce/jira/run-976
Update CI tests to run python docker library against API
Diffstat (limited to 'test/apiv2/rest_api')
-rw-r--r-- | test/apiv2/rest_api/__init__.py | 1 | ||||
-rw-r--r-- | test/apiv2/rest_api/test_rest_v2_0_0.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/test/apiv2/rest_api/__init__.py b/test/apiv2/rest_api/__init__.py index 5f0777d58..8100a4df5 100644 --- a/test/apiv2/rest_api/__init__.py +++ b/test/apiv2/rest_api/__init__.py @@ -3,7 +3,6 @@ import json import os import shutil import subprocess -import sys import tempfile diff --git a/test/apiv2/rest_api/test_rest_v2_0_0.py b/test/apiv2/rest_api/test_rest_v2_0_0.py index 5dfd1fc02..0ac4fde75 100644 --- a/test/apiv2/rest_api/test_rest_v2_0_0.py +++ b/test/apiv2/rest_api/test_rest_v2_0_0.py @@ -62,7 +62,7 @@ class TestApi(unittest.TestCase): TestApi.podman = Podman() TestApi.service = TestApi.podman.open( - "system", "service", "tcp:localhost:8080", "--log-level=debug", "--time=0" + "system", "service", "tcp:localhost:8080", "--time=0" ) # give the service some time to be ready... time.sleep(2) |