We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f6797 commit 80e5d52Copy full SHA for 80e5d52
1 file changed
.github/workflows/test.yml
@@ -56,6 +56,17 @@ jobs:
56
fail_ci_if_error: true
57
58
# --- PYTHON SECTION ---
59
+ - name: Free Disk Space
60
+ uses: jlumbroso/free-disk-space@main
61
+ with:
62
+ tool-cache: false # Keep this false to preserve Python/Node/Go tools
63
+ android: true
64
+ dotnet: true
65
+ haskell: true
66
+ large-packages: true
67
+ docker-images: true
68
+ swap-storage: true
69
+
70
- name: Setup Python
71
uses: actions/setup-python@v5
72
with:
@@ -66,7 +77,9 @@ jobs:
77
working-directory: ./apps/ingestion-worker
78
79
- name: Test Python
- run: pytest --cov=./ --cov-report=xml:coverage-python.xml
80
+ run: |
81
+ pip install --no-cache-dir -r requirements.txt
82
+ pytest --cov=./ --cov-report=xml:coverage-python.xml
83
84
85
- name: Upload Python Coverage
0 commit comments