diff options
author | Joffrey F <joffrey@docker.com> | 2015-08-25 15:10:02 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2015-08-25 15:10:02 -0700 |
commit | 0a7e8ead44321030645dfd4e079bee8fe157c193 (patch) | |
tree | c535ae0b576aa05d763c3461ae1fa8e10e226116 | |
parent | 47e0ad6959dd08776f35e67ba4f26e0fa3d336e1 (diff) | |
download | docker-py-712-dockerignore-test-cache.tar.gz |
Run dockerignore integration test with nocache enabled712-dockerignore-test-cache
-rw-r--r-- | tests/integration_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_test.py b/tests/integration_test.py index c1e6d30..434ea82 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -1322,7 +1322,7 @@ class TestBuildWithDockerignore(Cleanup, BaseTestCase): with open(os.path.join(subdir, 'grunt'), 'w') as f: f.write("grunt") - stream = self.client.build(path=base_dir, stream=True) + stream = self.client.build(path=base_dir, stream=True, nocache=True) logs = '' for chunk in stream: if six.PY3: |