github: source venv in every step

This commit is contained in:
Aleix Conchillo Flaqué
2024-03-19 15:31:03 -07:00
parent ae2dcf88ed
commit a189e2618f

View File

@@ -29,25 +29,30 @@ jobs:
- name: Cache virtual environment - name: Cache virtual environment
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}} # TODO: we are hashing requirements.txt but that doesn't contain all
# our dependencies pinned.
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ hashFiles('requirements.txt') }}
path: .venv path: .venv
- name: Install system packages - name: Install system packages
run: sudo apt-get install -y portaudio19-dev run: sudo apt-get install -y portaudio19-dev
- name: Setup virtual environment - name: Setup virtual environment
run: | run: |
python -m venv .venv python -m venv .venv
source .venv/bin/activate
- name: Install basic Python dependencies - name: Install basic Python dependencies
run: | run: |
source .venv/bin/activate
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
- name: Build project - name: Build project
run: | run: |
source .venv/bin/activate
python -m build python -m build
- name: Install project and other Python dependencies - name: Install project and other Python dependencies
run: | run: |
source .venv/bin/activate
pip install --editable . pip install --editable .
- name: Test with pytest - name: Test with pytest
run: | run: |
source .venv/bin/activate
pip install pytest pip install pytest
pytest --doctest-modules --ignore-glob="*to_be_updated*" src tests pytest --doctest-modules --ignore-glob="*to_be_updated*" src tests