Testing
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d93704b..99bc2ed 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -76,6 +76,10 @@
 
   - export INTEGRATION_CACHE="$(pwd)/cache/integration-cache"
 
+  - ls cache || true
+  - ls cache/integration-cache || true
+  - du -hs cache || true
+
   # Unpack and get into dist/buildstream
   - cd dist && ./unpack.sh
   - chown -R buildstream:buildstream buildstream
@@ -85,10 +89,20 @@
   # user to test for permission issues
   - su buildstream -c 'python3 setup.py test --index-url invalid://uri --addopts --integration'
 
+  # Check if we accidentally ignored INTEGRATION_CACHE variable
+  - ls integration-cache || true
+  - du -hs integration-cache || true
+
   # Go back to the toplevel and collect our reports
   - cd ../..
   - mkdir -p coverage-linux/
   - cp dist/buildstream/.coverage.* coverage-linux/coverage."${CI_JOB_NAME}"
+
+  # Observe the expected cache, after the fact
+  - ls cache || true
+  - ls cache/integration-cache || true
+  - du -hs cache || true
+
   artifacts:
     paths:
     - coverage-linux/