Skip to content

Commit

Permalink
use venvs
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop committed Feb 5, 2024
1 parent b3ee93c commit 7a0b24f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci_dbt_core_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@ jobs:
with:
python-version: "3.11"

- name: "Install python tools"
- name: "Start Virtual Env, Upgrade pip"
run: |
python -m pip install --user --upgrade pip
python -m venv env
source env/bin/activate
python -m pip install --upgrade pip
python -m pip --version
# tox takes care of installing the correct version of dbt-core dependencies but we need to
Expand Down Expand Up @@ -235,9 +237,11 @@ jobs:
if: runner.os == 'Windows'
uses: ./.github/actions/setup-postgres-windows

- name: "Install python tools"
- name: "Start Virtual Env, Upgrade pip"
run: |
python -m pip install --user --upgrade pip
python -m venv env
source env/bin/activate
python -m pip install --upgrade pip
python -m pip --version
# tox takes care of installing the correct version of dbt-core dependencies but we need to
Expand Down

0 comments on commit 7a0b24f

Please sign in to comment.