Skip to content

Commit aca4d69

Browse files
committed
Cleanup disk space
1 parent 69cc537 commit aca4d69

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/merge-gate.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,22 @@ jobs:
3030
- name: SCM Checkout
3131
uses: actions/checkout@v4
3232
with:
33-
fetch-depth: 0 -
33+
fetch-depth: 0
34+
35+
- name: Free disk space
36+
uses: jlumbroso/free-disk-space@main
37+
with:
38+
tool-cache: true
39+
large-packages: false
40+
41+
- name: Free disk space by removing large directories
42+
run: |
43+
sudo rm -rf /usr/local/graalvm/
44+
sudo rm -rf /usr/local/.ghcup/
45+
sudo rm -rf /usr/local/share/powershell
46+
sudo rm -rf /usr/local/share/chromium
47+
sudo rm -rf /usr/local/lib/node_modules
48+
sudo rm -rf /opt/ghc
3449
3550
- name: Setup Python & Poetry Environment
3651
uses: exasol/python-toolbox/.github/actions/python-environment@0.18.0

test/integration/test_cloud_storage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ def test_saas_bucket_cannot_be_iterated(backend, secrets: Secrets, setup_itde):
2929
pytest.skip('The test runs only with SaaS database')
3030
bucket = open_bucketfs_connection(secrets)
3131
with pytest.raises(TypeError, match="not iterable"):
32-
list(bucket)
32+
v = list(bucket)
33+
print(v)

0 commit comments

Comments
 (0)