Skip to content

Commit

Permalink
check python installation; disable space clearing step
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwilby committed Jun 13, 2024
1 parent bead637 commit bbbd7b8
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,26 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Delete huge unnecessary folders, and clean apt cache
run: |
rm -rf /opt/hostedtoolcache
rm -rf /usr/share/dotnet
rm -rf /opt/ghc
rm -rf "$AGENT_TOOLSDIRECTORY"
sudo apt-get clean
shell: bash
# - name: Delete huge unnecessary folders, and clean apt cache
# run: |
# rm -rf /opt/hostedtoolcache
# rm -rf /usr/share/dotnet
# rm -rf /opt/ghc
# rm -rf "$AGENT_TOOLSDIRECTORY"
# sudo apt-get clean
# shell: bash
- name: Print space
run: df -h
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements.txt
pip install -r requirements/requirements.dev.txt
- name: Check python installation
shell: bash
run: |
which python
python --version
- name: Test with tox
run: tox
- name: Run coveralls
Expand Down

0 comments on commit bbbd7b8

Please sign in to comment.