summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/integration_test.py2
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: