Skip to content

Commit

Permalink
properly source virtual env for poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot committed Jan 4, 2024
1 parent 3401a4b commit c1002d0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test-smol-k8s-lab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ jobs:

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true

- name: Install smol-k8s-lab via poetry
run: poetry install

- name: test smol-k8s-lab
run: smol-k8s-lab -c .github/smol_k8s_lab_config.yaml
- name: source virtual env and test smol-k8s-lab
run: |
source .venv/bin/activate
smol-k8s-lab -c .github/smol_k8s_lab_config.yaml

0 comments on commit c1002d0

Please sign in to comment.