From 75588a4333aef6a3830cd120136a664418d336e9 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Mon, 20 Aug 2018 08:40:42 -0700 Subject: Add retry decorator for flakey tests * Update doc strings Signed-off-by: Jhon Honce Closes: #1302 Approved by: baude --- contrib/python/podman/test/podman_testcase.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'contrib/python/podman/test/podman_testcase.py') diff --git a/contrib/python/podman/test/podman_testcase.py b/contrib/python/podman/test/podman_testcase.py index 731fa26fc..da73c1024 100644 --- a/contrib/python/podman/test/podman_testcase.py +++ b/contrib/python/podman/test/podman_testcase.py @@ -1,3 +1,4 @@ +"""Base for podman tests.""" import contextlib import functools import itertools @@ -16,6 +17,7 @@ class PodmanTestCase(unittest.TestCase): @classmethod def setUpClass(cls): + """Fixture to setup podman test case.""" if hasattr(PodmanTestCase, 'alpine_process'): PodmanTestCase.tearDownClass() @@ -91,6 +93,7 @@ class PodmanTestCase(unittest.TestCase): @classmethod def tearDownClass(cls): + """Fixture to clean up after podman unittest.""" try: PodmanTestCase.alpine_process.kill() assert 0 == PodmanTestCase.alpine_process.wait(500) @@ -104,5 +107,6 @@ class PodmanTestCase(unittest.TestCase): @contextlib.contextmanager def assertRaisesNotImplemented(self): + """Sugar for unimplemented varlink methods.""" with self.assertRaisesRegex(VarlinkError, MethodNotImplemented): yield -- cgit v1.2.3-54-g00ecf