Skip to content

Commit

Permalink
Do not create venv in Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hendzeld committed Mar 6, 2024
1 parent f2ff21a commit 8f63f56
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:

jobs:
smoke-test-on-linux:
env:
POETRY_VIRTUALENVS_CREATE: false
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -31,6 +33,8 @@ jobs:


build-and-test:
env:
POETRY_VIRTUALENVS_CREATE: false
runs-on: ${{ matrix.platform }}
needs: smoke-test-on-linux
strategy:
Expand Down Expand Up @@ -63,6 +67,8 @@ jobs:
run: python -m pytest

make-package:
env:
POETRY_VIRTUALENVS_CREATE: false
runs-on: ubuntu-latest
needs: build-and-test
steps:
Expand Down Expand Up @@ -90,6 +96,8 @@ jobs:
./tests/shieldhit/resources
test-package:
env:
POETRY_VIRTUALENVS_CREATE: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit 8f63f56

Please sign in to comment.