summaryrefslogtreecommitdiff
path: root/tests/integration/client_test.py
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2017-01-25 16:31:43 -0800
committerJoffrey F <joffrey@docker.com>2017-01-25 16:52:26 -0800
commita1d550a14c188dd9ce30d6344e35c5e48ad8f75d (patch)
tree60a433e24cbd7a92cac8d2074c7d621560c8aea2 /tests/integration/client_test.py
parent4ff77dc1c910e07117c925cf0f9784529f3bd8d5 (diff)
downloaddocker-py-config_test_api_version.tar.gz
Allow configuring API version for integration test with env varconfig_test_api_version
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'tests/integration/client_test.py')
-rw-r--r--tests/integration/client_test.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/integration/client_test.py b/tests/integration/client_test.py
index dfced9b..20e8cd5 100644
--- a/tests/integration/client_test.py
+++ b/tests/integration/client_test.py
@@ -2,19 +2,21 @@ import unittest
import docker
+from .base import TEST_API_VERSION
+
class ClientTest(unittest.TestCase):
def test_info(self):
- client = docker.from_env()
+ client = docker.from_env(version=TEST_API_VERSION)
info = client.info()
assert 'ID' in info
assert 'Name' in info
def test_ping(self):
- client = docker.from_env()
+ client = docker.from_env(version=TEST_API_VERSION)
assert client.ping() is True
def test_version(self):
- client = docker.from_env()
+ client = docker.from_env(version=TEST_API_VERSION)
assert 'Version' in client.version()