diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index f6de465c6db..5898765a9b0 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -36,7 +36,11 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - name: Checkout source + uses: actions/checkout@v2 + - name: Free space before test + run: | + df -Th - name: Set up Python ${{ matrix.python-version }} id: setup-python uses: actions/setup-python@v4 @@ -255,3 +259,7 @@ jobs: run: | cd python/huggingfaceserver poetry run -- pytest --cov=huggingfaceserver + + - name: Free space after tests + run: | + df -hT