From 9f764358bf34ae27139e3b231b48921432b76eb6 Mon Sep 17 00:00:00 2001 From: Andrei-Adnan Ismail Date: Fri, 30 Oct 2015 12:44:07 +0200 Subject: [PATCH] #395 Add API for docker inspect in base test class --- test/proxysql_base_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/proxysql_base_test.py b/test/proxysql_base_test.py index 5eb4205c6..e933dc820 100644 --- a/test/proxysql_base_test.py +++ b/test/proxysql_base_test.py @@ -175,6 +175,9 @@ class ProxySQLBaseTest(TestCase): def get_tests_config(self): return ProxySQL_Tests_Config(overrides=ProxySQLBaseTest.CONFIG_OVERRIDES) + def docker_inspect(self, container_id): + return self.docker_fleet.docker_inspect(container_id) + def run_in_docker_scenarios(self, f, scenarios=[], proxysql_filters={}, mysql_filters={}): """Runs a function in a number of docker scenarios.